Uses of Interface
jconch.pipeline.ThreadingModel

Packages that use ThreadingModel
jconch.pipeline   
jconch.pipeline.impl   
 

Uses of ThreadingModel in jconch.pipeline
 

Methods in jconch.pipeline that return ThreadingModel
 ThreadingModel PipeStage.getThreadingModel()
          Gets the threading model of the instance.
 

Constructors in jconch.pipeline with parameters of type ThreadingModel
Consumer(ThreadingModel threading, PipeLink<T> in)
          Creates a new instance of Consumer.
PipeStage(ThreadingModel threading)
          Constructor.
Processor(ThreadingModel threading, PipeLink<IN_T> inLink, PipeLink<OUT_T> outLink)
          Creates a new intance of Processor.
Producer(ThreadingModel threading, PipeLink<OUT_T> link)
          Constructor.
 

Uses of ThreadingModel in jconch.pipeline.impl
 

Classes in jconch.pipeline.impl that implement ThreadingModel
 class ExceptionThreadingModel
          Class that explodes when ExceptionThreadingModel.execute(PipeStage) is called.
 class ExecutorThreadingModel
           A wrapper around ThreadingModel which allows the user to leverage the Executor API, and its myriad extensions.
 class InlineThreadingModel
          Executes the pipeline stage inline.
 class SingleThreadThreadingModel
          Runs a single different thread to process the threading.
 class SpawningThreadingModel
          Spawns a new thread for each call to execute.
 

Constructors in jconch.pipeline.impl with parameters of type ThreadingModel
ClosureConsumer(org.apache.commons.collections.Closure sink, ThreadingModel threading, PipeLink<T> in)
          Constructor.
CollectionConsumer(java.util.Collection<T> out, ThreadingModel threading, PipeLink<T> in)
          Constructor.
CollectionConsumer(ThreadingModel threading, PipeLink<T> in)
           
CollectionProducer(java.util.Collection<T> data, ThreadingModel model, PipeLink<T> out)
          Constructor.
FactoryProducer(org.apache.commons.collections.Factory source, ThreadingModel threading, PipeLink link)
          Constructor.
TransformerProcessor(org.apache.commons.collections.Transformer trans, ThreadingModel threading, PipeLink inLink, PipeLink outLink)
          Constructor.