Class: FrCable::Connection::Base
- Inherits:
-
Object
- Object
- FrCable::Connection::Base
- Defined in:
- lib/fr_cable/connection/base.rb
Instance Method Summary collapse
- #connected(connection_uuid) ⇒ Object
- #disconnected(connection_uuid) ⇒ Object
-
#initialize ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize ⇒ Base
Returns a new instance of Base.
4 5 6 |
# File 'lib/fr_cable/connection/base.rb', line 4 def initialize end |
Instance Method Details
#connected(connection_uuid) ⇒ Object
8 9 10 |
# File 'lib/fr_cable/connection/base.rb', line 8 def connected connection_uuid true end |
#disconnected(connection_uuid) ⇒ Object
12 13 14 |
# File 'lib/fr_cable/connection/base.rb', line 12 def disconnected connection_uuid # void end |