Uses of Interface
jconch.pipeline.PipeElement

Packages that use PipeElement
jconch.pipeline   
jconch.pipeline.impl   
 

Uses of PipeElement in jconch.pipeline
 

Classes in jconch.pipeline that implement PipeElement
 class Consumer<T>
          The base implementation of a pipe that consumes elements without producing anything.
 class PipeLink<T>
           A link in the stages of the pipeline.
 class PipeStage
          The base interface for a stage in the pipeline.
 class Processor<IN_T,OUT_T>
           A processing pipe in the pipeline.
 class Producer<OUT_T>
          The base implementation of a pipe that produces new elements to retrieve.
 

Uses of PipeElement in jconch.pipeline.impl
 

Classes in jconch.pipeline.impl that implement PipeElement
 class BoundedPipeLink<T>
          A pipe link with a specified upper bound on the queue length.
 class ClosureConsumer<T>
          A Closure-based implementation of a Consumer.
 class CollectionConsumer<T>
          A consumer which collects elements into a collection.
 class CollectionProducer<T>
          A producer which provides elements from a given collection.
 class FactoryProducer
          A Producer based off of a Factory implementation.
 class TransformerProcessor
          A Transformer-based implementation of a Processor.
 class TypeSafePipeLink<T>
          Due to a limitation in Java's generic implementation, there is no way to go from a parameterized type to a Class instance representing that type.
 class UnboundedPipeLink<T>
           An unbounded link in the pipeline.