Class: Wakame::Event::ServiceUnboundAgent

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(service, agent) ⇒ ServiceUnboundAgent

Returns a new instance of ServiceUnboundAgent.



88
89
90
91
92
# File 'lib/wakame/event.rb', line 88

def initialize(service, agent)
  super()
  @service = service
  @agent = agent
end

Instance Attribute Details

#agentObject (readonly)

Returns the value of attribute agent.



87
88
89
# File 'lib/wakame/event.rb', line 87

def agent
  @agent
end

#serviceObject (readonly)

Returns the value of attribute service.



87
88
89
# File 'lib/wakame/event.rb', line 87

def service
  @service
end