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.



149
150
151
152
153
# File 'lib/wakame/event.rb', line 149

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

Instance Attribute Details

#agentObject (readonly)

Returns the value of attribute agent.



148
149
150
# File 'lib/wakame/event.rb', line 148

def agent
  @agent
end

#serviceObject (readonly)

Returns the value of attribute service.



148
149
150
# File 'lib/wakame/event.rb', line 148

def service
  @service
end