Class: RIO::IOPipe

Inherits:
IOPair show all
Defined in:
lib/rio/fibpipe.rb

Instance Attribute Summary

Attributes inherited from IOPair

#in, #out

Instance Method Summary collapse

Constructor Details

#initializeIOPipe

Returns a new instance of IOPipe.



13
14
15
16
# File 'lib/rio/fibpipe.rb', line 13

def initialize
  rd,wr = IO.pipe
  super(rd,wr)
end