class Smpp::Pdu::UnbindResponse

Public Class Methods

from_wire_data(seq, status, body) click to toggle source
# File lib/smpp/pdu/unbind_response.rb, line 9
def self.from_wire_data(seq, status, body)
  new(seq, status)
end
new(seq, status) click to toggle source
Calls superclass method Smpp::Pdu::Base::new
# File lib/smpp/pdu/unbind_response.rb, line 4
def initialize(seq, status)
  seq ||= next_sequence_number
  super(UNBIND_RESP, status, seq)
end