net.simplace.util.pipeline.FWPipeLine
Represents a pipeline of processors.
public class FWPipeLine extends java.lang.Thread {
// Public Constructors
public FWPipeLine(Element aPipelineElement, FWPipeLinesContainer aContainer)
throws PipeLineCreationException;
// Public Instance Methods public
FWPipeLine clone();
// Overrides java.lang.Thread
Clones the Pipeline
public void
prepare(
FWObservable aObservable, int aNumberOfSteps);
called to prepare Pipeline Thread for running.
- aObservable
- aNumberOfSteps
public
FWObservable getResult();
Called after Thread has finished.
returns FWObservable
public void run(); // Overrides java.lang.Thread
public List getProcessors();
returns the processors list
public int getAllreadyLoopedCount();
returns the iAllreadyLoopedCount
public void
setAllreadyLoopedCount(int allreadyLoopedCount);
- allreadyLoopedCount the iAllreadyLoopedCount to set
}
Hierarchy: java.lang.Object - java.lang.Thread (java.lang.Runnable) - FWPipeLine
Returned by: clone(), FWProcessor.getPipeLine(), FWPipeLinesContainer.getPipeLine()