Uses of Interface
org.apache.commons.pipeline.StageDriverFactory

Packages that use StageDriverFactory
org.apache.commons.pipeline This package provides a set of pipeline utilities designed around work queues that run in parallel to sequentially process data objects. 
org.apache.commons.pipeline.driver This package contains implementations of the StageDriver and StageDriverFactory interfaces. 
org.apache.commons.pipeline.validation Utilities for validating stage connectivity within a pipeline. 
 

Uses of StageDriverFactory in org.apache.commons.pipeline
 

Methods in org.apache.commons.pipeline with parameters of type StageDriverFactory
 void Pipeline.addStage(Stage stage, StageDriverFactory driverFactory)
          Adds a Stage object to the end of this Pipeline.
 

Uses of StageDriverFactory in org.apache.commons.pipeline.driver
 

Classes in org.apache.commons.pipeline.driver that implement StageDriverFactory
 class DedicatedThreadStageDriverFactory
          This factory is used to create DedicatedThreadStageDriver instances configured to run specific stages.
 class SynchronousStageDriverFactory
          Factory for SynchronousStageDriver objects.
 class ThreadPoolStageDriverFactory
          This factory is used to create ThreadPoolStageDriver instances configured to run specific stages.
 

Uses of StageDriverFactory in org.apache.commons.pipeline.validation
 

Methods in org.apache.commons.pipeline.validation with parameters of type StageDriverFactory
 List<ValidationFailure> SimplePipelineValidator.validateAddStage(Pipeline pipeline, Stage stage, StageDriverFactory driverFactory)
          Validate whether or not a stage can be added to the pipeline.
 List<ValidationFailure> PipelineValidator.validateAddStage(Pipeline pipeline, Stage stage, StageDriverFactory driverFactory)
          Implementations of this method should validate whether or not the specified stage can be added to the pipeline in its current state.
 



Copyright © 2004-2009 The Apache Software Foundation. All Rights Reserved.