Class: LIFX::TransportManager::Base Private
- Inherits:
-
Object
- Object
- LIFX::TransportManager::Base
- Defined in:
- lib/lifx/transport_manager.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Direct Known Subclasses
Instance Method Summary collapse
- #discover ⇒ Object private
- #flush(**options) ⇒ Object private
-
#initialize(**args) ⇒ Base
constructor
private
A new instance of Base.
- #stop ⇒ Object private
- #write(message) ⇒ Object private
Constructor Details
#initialize(**args) ⇒ Base
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Base.
10 11 |
# File 'lib/lifx/transport_manager.rb', line 10 def initialize(**args) end |
Instance Method Details
#discover ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
13 14 15 |
# File 'lib/lifx/transport_manager.rb', line 13 def discover raise NotImplementedError end |
#flush(**options) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
21 22 23 |
# File 'lib/lifx/transport_manager.rb', line 21 def flush(**) raise NotImplementedError end |
#stop ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
25 26 27 |
# File 'lib/lifx/transport_manager.rb', line 25 def stop raise NotImplementedError end |
#write(message) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
17 18 19 |
# File 'lib/lifx/transport_manager.rb', line 17 def write() raise NotImplementedError end |