class Empp::MsgConnectResp

Attributes

status[RW]

Public Class Methods

new() click to toggle source
# File lib/empp/msg_connect_resp.rb, line 10
def initialize
  @command_id = Constants::EMPP_CONNECT_RESP
  @status = nil
end

Public Instance Methods

to_s() click to toggle source
Calls superclass method Empp::EmppBase#to_s
# File lib/empp/msg_connect_resp.rb, line 15
def to_s
  str = super
  str + ", status = #{@status}"
end