Method: IO.fast_read_select

Defined in:
lib/openc3/core_ext/io.rb

.fast_read_select(read_sockets, timeout) ⇒ Object

Parameters:

  • read_sockets (Array<IO>)

    IO objects to wait to be ready to read

  • timeout (Numeric)

    Number of seconds to wait



118
119
120
# File 'lib/openc3/core_ext/io.rb', line 118

def fast_read_select(read_sockets, timeout)
  return fast_select(read_sockets, nil, nil, timeout)
end