Class: Nanite::Ping

Inherits:
Packet show all
Defined in:
lib/nanite/packets.rb

Overview

heartbeat packet

identity is sender’s identity status is sender’s status (see Register packet documentation)

Instance Attribute Summary collapse

Attributes inherited from Packet

#size

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Packet

#id_to_s, #to_json

Constructor Details

#initialize(identity, status, size = nil) ⇒ Ping

Returns a new instance of Ping.



332
333
334
335
336
# File 'lib/nanite/packets.rb', line 332

def initialize(identity, status, size=nil)
  @status   = status
  @identity = identity
  @size     = size
end

Instance Attribute Details

#identityObject

Returns the value of attribute identity.



330
331
332
# File 'lib/nanite/packets.rb', line 330

def identity
  @identity
end

#statusObject

Returns the value of attribute status.



330
331
332
# File 'lib/nanite/packets.rb', line 330

def status
  @status
end

Class Method Details

.json_create(o) ⇒ Object



338
339
340
341
# File 'lib/nanite/packets.rb', line 338

def self.json_create(o)
  i = o['data']
  new(i['identity'], i['status'], o['size'])
end

Instance Method Details

#to_sObject



343
344
345
# File 'lib/nanite/packets.rb', line 343

def to_s
  "#{super} #{id_to_s(identity)} status #{status}"
end