Class: Artoo::Drivers::Pinger2
- Defined in:
- lib/artoo/drivers/pinger2.rb
Overview
Pings itself
Instance Attribute Summary
Attributes inherited from Driver
Instance Method Summary collapse
Methods inherited from Driver
#connection, #event_topic_name, #initialize, #interval, #method_missing, #pin
Methods included from Celluloid
Constructor Details
This class inherits a constructor from Artoo::Drivers::Driver
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Artoo::Drivers::Driver
Instance Method Details
#start_driver ⇒ Object
7 8 9 10 11 12 13 14 15 |
# File 'lib/artoo/drivers/pinger2.rb', line 7 def start_driver every(interval) do @count = rand(100000) publish(event_topic_name("update"), "alive", @count) publish(event_topic_name("alive"), @count) end super end |