Class: Virtuozzo::SOAP::Drivers::Process::Execute
- Inherits:
-
Object
- Object
- Virtuozzo::SOAP::Drivers::Process::Execute
- Defined in:
- lib/virtuozzo/soap/drivers/process/types.rb
Overview
Defined Under Namespace
Instance Attribute Summary collapse
-
#argv ⇒ Object
Returns the value of attribute argv.
-
#cred ⇒ Object
Returns the value of attribute cred.
-
#envp ⇒ Object
Returns the value of attribute envp.
-
#stdio ⇒ Object
Returns the value of attribute stdio.
-
#stream_mode ⇒ Object
Returns the value of attribute stream_mode.
Instance Method Summary collapse
-
#initialize(argv = [], envp = [], stream_mode = nil, cred = nil, stdio = nil) ⇒ Execute
constructor
A new instance of Execute.
Constructor Details
#initialize(argv = [], envp = [], stream_mode = nil, cred = nil, stdio = nil) ⇒ Execute
Returns a new instance of Execute.
2669 2670 2671 2672 2673 2674 2675 |
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2669 def initialize(argv = [], envp = [], stream_mode = nil, cred = nil, stdio = nil) @argv = argv @envp = envp @stream_mode = stream_mode @cred = cred @stdio = stdio end |
Instance Attribute Details
#argv ⇒ Object
Returns the value of attribute argv.
2663 2664 2665 |
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2663 def argv @argv end |
#cred ⇒ Object
Returns the value of attribute cred.
2666 2667 2668 |
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2666 def cred @cred end |
#envp ⇒ Object
Returns the value of attribute envp.
2664 2665 2666 |
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2664 def envp @envp end |
#stdio ⇒ Object
Returns the value of attribute stdio.
2667 2668 2669 |
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2667 def stdio @stdio end |
#stream_mode ⇒ Object
Returns the value of attribute stream_mode.
2665 2666 2667 |
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2665 def stream_mode @stream_mode end |