Method: QB::IPC::STDIO::Client#initialize
- Defined in:
- lib/qb/ipc/stdio/client.rb
#initialize ⇒ Client
Instantiate a new QB::IPC::STDIO::Client.
233 234 235 236 237 238 |
# File 'lib/qb/ipc/stdio/client.rb', line 233 def initialize @stdin = Connection.new name: :in, type: :in @stdout = Connection.new name: :out, type: :out @stderr = Connection.new name: :err, type: :out @log = Connection.new name: :log, type: :out end |