Class: Wakame::Event::ActorComplete

Inherits:
Base
  • Object
show all
Defined in:
lib/wakame/event.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#time

Instance Method Summary collapse

Methods inherited from Base

#log_message

Constructor Details

#initialize(agent_id, token, status) ⇒ ActorComplete

Returns a new instance of ActorComplete.



224
225
226
227
228
# File 'lib/wakame/event.rb', line 224

def initialize(agent_id, token, status)
  @agent_id = agent_id
  @token = token
  @status = status
end

Instance Attribute Details

#agent_idObject (readonly)

Returns the value of attribute agent_id.



223
224
225
# File 'lib/wakame/event.rb', line 223

def agent_id
  @agent_id
end

#statusObject (readonly)

Returns the value of attribute status.



223
224
225
# File 'lib/wakame/event.rb', line 223

def status
  @status
end

#tokenObject (readonly)

Returns the value of attribute token.



223
224
225
# File 'lib/wakame/event.rb', line 223

def token
  @token
end