Uses of Interface
org.d_haven.event.Source

Packages that use Source
org.d_haven.event   
org.d_haven.event.command   
org.d_haven.event.impl   
 

Uses of Source in org.d_haven.event
 

Subinterfaces of Source in org.d_haven.event
 interface Pipe
          A Source implements the side of an event queue where QueueElements are dequeued operations only.
 

Methods in org.d_haven.event with parameters of type Source
 void DequeueInterceptor.after(Source context)
          An operation executed after dequeing events from the queue.
 void DequeueInterceptor.before(Source context)
          An operation executed before dequeing events from the queue.
 

Uses of Source in org.d_haven.event.command
 

Fields in org.d_haven.event.command declared as Source
private  Source[] CommandEventPipeline.m_sources
           
 

Methods in org.d_haven.event.command that return Source
 Source[] CommandEventPipeline.getSources()
          Used by the Threadmanager to get the sources that are feeding the DefaultCommandManager.
 Source[] EventPipeline.getSources()
          There can be many different sources to merge into a pipeline.
 

Uses of Source in org.d_haven.event.impl
 

Classes in org.d_haven.event.impl that implement Source
 class AbstractPipe
          Provides the base functionality for the other Pipe types.
 class DefaultPipe
          The default queue implementation is a variable size queue.
 

Methods in org.d_haven.event.impl with parameters of type Source
 void NullDequeueInterceptor.after(Source context)
          An operation executed after dequeing events from the queue.
 void NullDequeueInterceptor.before(Source context)
          An operation executed before dequeing events from the queue.