Class: Wakame::Packets::StatusCheckResult

Inherits:
ResponseBase show all
Defined in:
lib/wakame/packets.rb

Constant Summary

Constants included from AttributeHelper

AttributeHelper::CLASS_TYPE_KEY, AttributeHelper::CONVERT_CLASSES, AttributeHelper::PRIMITIVE_CLASSES

Instance Method Summary collapse

Methods inherited from ResponseBase

#marshal

Methods included from AttributeHelper

#dump_attrs, #retrieve_attr_attribute

Constructor Details

#initialize(agent, svc_id, status, fail_message = nil) ⇒ StatusCheckResult

Returns a new instance of StatusCheckResult.



134
135
136
137
138
139
# File 'lib/wakame/packets.rb', line 134

def initialize(agent, svc_id, status, fail_message=nil)
  super(agent)
  @svc_id = svc_id
  @status = status
  @fail_message = fail_message
end