Uses of Interface
com.sun.labs.minion.Pipeline

Packages that use Pipeline
com.sun.labs.minion Provides the API for interacting with the Minion Search Engine. 
com.sun.labs.minion.engine Provides implementations for some of the end-user interfaces. 
com.sun.labs.minion.pipeline Provides the classes for building a pipeline. 
 

Uses of Pipeline in com.sun.labs.minion
 

Subinterfaces of Pipeline in com.sun.labs.minion
 interface HLPipeline
          A pipeline that can be used for highlighting documents.
 

Uses of Pipeline in com.sun.labs.minion.engine
 

Fields in com.sun.labs.minion.engine declared as Pipeline
protected  Pipeline[] SearchEngineImpl.pipes
          The pipelines to use for indexing.
 

Uses of Pipeline in com.sun.labs.minion.pipeline
 

Classes in com.sun.labs.minion.pipeline that implement Pipeline
 class AbstractPipelineImpl
          An abstract implementation of pipeline.
 class AsyncPipelineImpl
          A class that encapsulates the machinery of a single indexing pipeline.
 class HLPipelineImpl
          A pipeline that can be used for highlighting documents.
 class SyncPipelineImpl
           
 

Methods in com.sun.labs.minion.pipeline that return Pipeline
 Pipeline PipelineFactory.getAsynchronousPipeline(SearchEngine engine, java.util.concurrent.BlockingQueue<Indexable> indexingQueue)
          Gets an asynchronous pipeline configured according to the configuration of the indexer.
 Pipeline PipelineFactory.getSynchronousPipeline(SearchEngine engine)
          Gets a synchronous pipeline configured according to the configuration of the indexer.