Method: OpenC3::Interface#connected?

Defined in:
lib/openc3/interfaces/interface.rb

#connected?Boolean

Indicates if the interface is connected to its target(s) or not. Must be implemented by a subclass.

Returns:

  • (Boolean)


187
188
189
# File 'lib/openc3/interfaces/interface.rb', line 187

def connected?
  raise "connected? not defined by Interface"
end