Uses of Interface
xsmeral.pipe.interfaces.ObjectSource

Packages that use ObjectSource
xsmeral.pipe Pipe implementation and exceptions 
xsmeral.pipe.interfaces Interfaces of processors (source, sink) and annotations 
 

Uses of ObjectSource in xsmeral.pipe
 

Classes in xsmeral.pipe that implement ObjectSource
 class LocalObjectFilter<I,O>
          An object processor that serves the role of a filter.
 class LocalObjectSource<O>
          An object processor in the role of an object source, produces objects.
 

Fields in xsmeral.pipe declared as ObjectSource
protected  ObjectSource<I> LocalObjectSink.prev
          Reference to the previous processor in chain.
 

Methods in xsmeral.pipe that return ObjectSource
 ObjectSource<I> LocalObjectFilter.getPrev()
           
 ObjectSource<I> LocalObjectSink.getPrev()
           
 

Methods in xsmeral.pipe with parameters of type ObjectSource
 void LocalObjectFilter.prev(ObjectSource<I> src)
           
 void LocalObjectSink.prev(ObjectSource<I> src)
           
 

Uses of ObjectSource in xsmeral.pipe.interfaces
 

Methods in xsmeral.pipe.interfaces that return ObjectSource
 ObjectSource<I> ObjectSink.getPrev()
          Returns the previous processor in chain.
 

Methods in xsmeral.pipe.interfaces with parameters of type ObjectSource
 void ObjectSink.prev(ObjectSource<I> src)
          Sets this processor as the next in the chain, after the given processor.