Class: LIFX::TransportManager::Base Private

Inherits:
Object
  • Object
show all
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

LAN

Instance Method Summary collapse

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

#discoverObject

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.

Raises:

  • (NotImplementedError)


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.

Raises:

  • (NotImplementedError)


21
22
23
# File 'lib/lifx/transport_manager.rb', line 21

def flush(**options)
  raise NotImplementedError
end

#stopObject

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.

Raises:

  • (NotImplementedError)


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.

Raises:

  • (NotImplementedError)


17
18
19
# File 'lib/lifx/transport_manager.rb', line 17

def write(message)
  raise NotImplementedError
end