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

Packages that use StageEventListener
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.listener Sample implementations of the StageEventListener interface used for testing. 
org.apache.commons.pipeline.stage A few simple Stage implementations for common use cases. 
org.apache.commons.pipeline.testFramework Framework classes used to simplify unit test development for pipeline stages. 
 

Uses of StageEventListener in org.apache.commons.pipeline
 

Methods in org.apache.commons.pipeline that return types with arguments of type StageEventListener
 Collection<StageEventListener> StageContext.getRegisteredListeners()
          Returns the collection of StageEventListeners registered with the context.
 Collection<StageEventListener> Pipeline.getRegisteredListeners()
          Returns the collection of StageEventListeners registered with the context.
 

Methods in org.apache.commons.pipeline with parameters of type StageEventListener
 void StageContext.registerListener(StageEventListener listener)
          Adds a StageEventListener to the context that will be notified by calls to StageContext.raise(EventObject).
 void Pipeline.registerListener(StageEventListener listener)
          Adds a StageEventListener to the context that will be notified by calls to StageContext.raise(EventObject).
 

Uses of StageEventListener in org.apache.commons.pipeline.listener
 

Classes in org.apache.commons.pipeline.listener that implement StageEventListener
 class ObjectProcessedEventCounter
          This listener keeps track of the number of ObjectProcessedEvents received from each Stage
 

Uses of StageEventListener in org.apache.commons.pipeline.stage
 

Classes in org.apache.commons.pipeline.stage that implement StageEventListener
 class KeyWaitBufferStage
           
 

Uses of StageEventListener in org.apache.commons.pipeline.testFramework
 

Fields in org.apache.commons.pipeline.testFramework with type parameters of type StageEventListener
 List<StageEventListener> TestStageContext.listeners
           
 

Methods in org.apache.commons.pipeline.testFramework that return types with arguments of type StageEventListener
 Collection<StageEventListener> TestStageContext.getRegisteredListeners()
           
 

Methods in org.apache.commons.pipeline.testFramework with parameters of type StageEventListener
 void TestStageContext.registerListener(StageEventListener listener)
           
 



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