Class: ProconBypassMan::ExternalInput::Channels::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/procon_bypass_man/external_input/channels/base.rb

Direct Known Subclasses

SerialPortChannel, TCPIPChannel

Instance Method Summary collapse

Instance Method Details

#display_name_for_boot_messageString

Returns:

  • (String)

Raises:

  • (NotImplementedError)


16
17
18
# File 'lib/procon_bypass_man/external_input/channels/base.rb', line 16

def display_name_for_boot_message
  raise NotImplementedError
end

#readString, NilClass

Returns:

  • (String, NilClass)

Raises:

  • (NotImplementedError)


6
7
8
# File 'lib/procon_bypass_man/external_input/channels/base.rb', line 6

def read
  raise NotImplementedError
end

#shutdownvoid

This method returns an undefined value.

Raises:

  • (NotImplementedError)


11
12
13
# File 'lib/procon_bypass_man/external_input/channels/base.rb', line 11

def shutdown
  raise NotImplementedError
end