Uses of Interface
org.d_haven.event.command.EventPipeline

Packages that use EventPipeline
org.d_haven.event.command   
 

Uses of EventPipeline in org.d_haven.event.command
 

Classes in org.d_haven.event.command that implement EventPipeline
 class CommandEventPipeline
          Created by IntelliJ IDEA.
 

Fields in org.d_haven.event.command declared as EventPipeline
private  EventPipeline EventPipelineRunner.m_pipeline
           
 

Methods in org.d_haven.event.command that return EventPipeline
 EventPipeline EventPipelineRunner.getPipeline()
          Get the pipeline we are processing at this time.
 

Methods in org.d_haven.event.command with parameters of type EventPipeline
 EventPipelineRunner ProcessorBoundThreadPolicy.createRunner(EventPipeline pipeline)
           
 EventPipelineRunner OneThreadPolicy.createRunner(EventPipeline pipeline)
           
 EventPipelineRunner ThreadPolicy.createRunner(EventPipeline pipeline)
          Create the EventPipelineRunner that will be used to get events from the Sources to the EventHandler.
 void DefaultThreadManager.register(EventPipeline pipeline)
          Register an EventPipeline with the ThreadManager.
 void ThreadManager.register(EventPipeline pipeline)
          Register an EventPipeline with the ThreadManager.
 void DefaultThreadManager.unregister(EventPipeline pipeline)
          Unregister an EventPipeline with the ThreadManager.
 void ThreadManager.unregister(EventPipeline pipeline)
          Deregister an EventPipeline with the ThreadManager.
 

Constructors in org.d_haven.event.command with parameters of type EventPipeline
EventPipelineRunner(EventPipeline pipeline)
          Create an EventPipelineRunner with the supplied pipeline and a policy of dequeueing one entry at a time.
EventPipelineRunner(EventPipeline pipeline, int numEntries)
          Create an EventPipelineRunner with the supplied pipeline and number of events to dequeue at a time.