Class: Virtuozzo::SOAP::Drivers::Process::Execute::Stdio

Inherits:
Object
  • Object
show all
Defined in:
lib/virtuozzo/soap/drivers/process/types.rb

Overview

inner class for member: stdio http://www.swsoft.com/webservices/vzl/4.0.0/processmstdio

input - SOAP::SOAPBase64
output - (any)
error - (any)
mixed - (any)

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(input = nil, output = nil, error = nil, mixed = nil) ⇒ Stdio

Returns a new instance of Stdio.



2655
2656
2657
2658
2659
2660
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2655

def initialize(input = nil, output = nil, error = nil, mixed = nil)
  @input = input
  @output = output
  @error = error
  @mixed = mixed
end

Instance Attribute Details

#errorObject

Returns the value of attribute error.



2652
2653
2654
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2652

def error
  @error
end

#inputObject

Returns the value of attribute input.



2650
2651
2652
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2650

def input
  @input
end

#mixedObject

Returns the value of attribute mixed.



2653
2654
2655
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2653

def mixed
  @mixed
end

#outputObject

Returns the value of attribute output.



2651
2652
2653
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2651

def output
  @output
end