Class: MQTT::SN::Packet::Searchgw
- Defined in:
- lib/mqtt/sn/packet.rb
Constant Summary collapse
- DEFAULTS =
{ radius: 1 }.freeze
Constants inherited from Packet
Instance Attribute Summary collapse
-
#radius ⇒ Object
Returns the value of attribute radius.
Attributes inherited from Packet
#body_length, #flags, #id, #version
Instance Method Summary collapse
Methods inherited from Packet
create_from_header, #dup, #initialize, #inspect, #message_id, #message_id=, parse, parse_header, read, read_byte, #to_s, #type_id, #type_name, #update_attributes, #validate_flags
Constructor Details
This class inherits a constructor from MQTT::Packet
Instance Attribute Details
#radius ⇒ Object
Returns the value of attribute radius.
196 197 198 |
# File 'lib/mqtt/sn/packet.rb', line 196 def radius @radius end |
Instance Method Details
#encode_body ⇒ Object
202 203 204 |
# File 'lib/mqtt/sn/packet.rb', line 202 def encode_body [radius].pack("C") end |
#parse_body(buffer) ⇒ Object
206 207 208 |
# File 'lib/mqtt/sn/packet.rb', line 206 def parse_body(buffer) self.radius, _ignore = buffer.unpack("C") end |