Class: Indocker::Launchers::DTO::RemoteOperationDTO
- Inherits:
-
Object
- Object
- Indocker::Launchers::DTO::RemoteOperationDTO
- Defined in:
- lib/indocker/launchers/dto/remote_operation_dto.rb
Instance Attribute Summary collapse
-
#message ⇒ Object
readonly
Returns the value of attribute message.
-
#operation ⇒ Object
readonly
Returns the value of attribute operation.
-
#server ⇒ Object
readonly
Returns the value of attribute server.
-
#thread ⇒ Object
readonly
Returns the value of attribute thread.
Instance Method Summary collapse
-
#initialize(thread, server, operation, message = nil) ⇒ RemoteOperationDTO
constructor
A new instance of RemoteOperationDTO.
Constructor Details
#initialize(thread, server, operation, message = nil) ⇒ RemoteOperationDTO
Returns a new instance of RemoteOperationDTO.
4 5 6 7 8 9 |
# File 'lib/indocker/launchers/dto/remote_operation_dto.rb', line 4 def initialize(thread, server, operation, = nil) @thread = thread @server = server @operation = operation @message = end |
Instance Attribute Details
#message ⇒ Object (readonly)
Returns the value of attribute message.
2 3 4 |
# File 'lib/indocker/launchers/dto/remote_operation_dto.rb', line 2 def @message end |
#operation ⇒ Object (readonly)
Returns the value of attribute operation.
2 3 4 |
# File 'lib/indocker/launchers/dto/remote_operation_dto.rb', line 2 def operation @operation end |
#server ⇒ Object (readonly)
Returns the value of attribute server.
2 3 4 |
# File 'lib/indocker/launchers/dto/remote_operation_dto.rb', line 2 def server @server end |
#thread ⇒ Object (readonly)
Returns the value of attribute thread.
2 3 4 |
# File 'lib/indocker/launchers/dto/remote_operation_dto.rb', line 2 def thread @thread end |