Class: Indocker::ConfigurationDeployer::RemoteOperation

Inherits:
Object
  • Object
show all
Defined in:
lib/indocker/configuration_deployer.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(thread, server, operation, message = nil) ⇒ RemoteOperation

Returns a new instance of RemoteOperation.



313
314
315
316
317
318
# File 'lib/indocker/configuration_deployer.rb', line 313

def initialize(thread, server, operation, message = nil)
  @thread = thread
  @server = server
  @operation = operation
  @message = message
end

Instance Attribute Details

#messageObject (readonly)

Returns the value of attribute message.



311
312
313
# File 'lib/indocker/configuration_deployer.rb', line 311

def message
  @message
end

#operationObject (readonly)

Returns the value of attribute operation.



311
312
313
# File 'lib/indocker/configuration_deployer.rb', line 311

def operation
  @operation
end

#serverObject (readonly)

Returns the value of attribute server.



311
312
313
# File 'lib/indocker/configuration_deployer.rb', line 311

def server
  @server
end

#threadObject (readonly)

Returns the value of attribute thread.



311
312
313
# File 'lib/indocker/configuration_deployer.rb', line 311

def thread
  @thread
end