Class: TTK::Streams::Pipe

Inherits:
Stream show all
Defined in:
lib/ttk/strategies/Streams/Pipe.rb

Defined Under Namespace

Classes: PipeWrapper

Instance Attribute Summary

Attributes inherited from Stream

#my, #name, #ref

Instance Method Summary collapse

Methods inherited from Stream

#clean, #compare_streams, #status, #to_ttk_log

Constructor Details

#initialize(name, ref = nil) ⇒ Pipe

Constructor



38
39
40
41
42
43
# File 'lib/ttk/strategies/Streams/Pipe.rb', line 38

def initialize ( name, ref=nil )
  super
  if name != :input
    @my = PipeWrapper.new(@my)
  end
end