Uses of Interface
org.jactr.core.queue.ITimedEvent

Packages that use ITimedEvent
org.jactr.core.production.action   
org.jactr.core.queue   
org.jactr.core.queue.event   
org.jactr.core.queue.timedevents   
org.jactr.modules.pm.aural.buffer.six   
org.jactr.modules.pm.buffer   
org.jactr.modules.pm.common.buffer   
org.jactr.modules.pm.common.efferent   
org.jactr.modules.pm.motor.buffer.event   
org.jactr.modules.pm.visual.timedevent   
 

Uses of ITimedEvent in org.jactr.core.production.action
 

Classes in org.jactr.core.production.action that implement ITimedEvent
 class ModifyAction.ModifyActionTimedEvent
           
 class RemoveAction.RemoveActionTimedEvent
           
 class SetAction.SetActionTimedEvent
           
 

Uses of ITimedEvent in org.jactr.core.queue
 

Subinterfaces of ITimedEvent in org.jactr.core.queue
 interface IIntermediateTimedEvent
          A timed event that needs to be notified with intermittant time updates For instance, a long running event (say moving a limb) might need intermediate updates so that its internal model can be updated.
 

Methods in org.jactr.core.queue that return types with arguments of type ITimedEvent
 java.util.Collection<ITimedEvent> TimedEventQueue.getFiringEvents()
          return the events that will fire right now.
 java.util.Collection<ITimedEvent> TimedEventQueue.getPendingEvents()
          return all the events that are pending.
 

Methods in org.jactr.core.queue with parameters of type ITimedEvent
 void TimedEventQueue.enqueue(ITimedEvent te)
          queue up the event.
 

Uses of ITimedEvent in org.jactr.core.queue.event
 

Methods in org.jactr.core.queue.event that return ITimedEvent
 ITimedEvent TimedEventEvent.getTimedEvent()
           
 

Constructors in org.jactr.core.queue.event with parameters of type ITimedEvent
TimedEventEvent(TimedEventQueue queue, ITimedEvent te, TimedEventEvent.Type type)
           
 

Uses of ITimedEvent in org.jactr.core.queue.timedevents
 

Subinterfaces of ITimedEvent in org.jactr.core.queue.timedevents
 interface IBufferBasedTimedEvent
          this is a timed event that operates upon a specific buffer.
 

Classes in org.jactr.core.queue.timedevents that implement ITimedEvent
 class AbstractTimedEvent
          Description of the Class
 class BlockingTimedEvent
          BlockingTimedEvent sits on the TimedEventQueue and when it fires, it will block the running of the IModel.
 class DelayedBufferInsertionTimedEvent
          insert a chunk into a specific buffer after a certain time has elapsed
 class DelayedBufferRequestTimedEvent
           
 class DelayedIndirectBufferRequestTimedEvent
           
 class FutureChunkInsertionTimedEvent
          Deprecated. 
 class FutureChunkPatternInsertionTimedEvent
          Deprecated. 
 class RunnableTimedEvent
           
 class TerminationTimedEvent
           
 

Uses of ITimedEvent in org.jactr.modules.pm.aural.buffer.six
 

Methods in org.jactr.modules.pm.aural.buffer.six with parameters of type ITimedEvent
 void DefaultAuralLocationBuffer.enqueueTimedEvent(ITimedEvent timedEvent)
           
 

Uses of ITimedEvent in org.jactr.modules.pm.buffer
 

Methods in org.jactr.modules.pm.buffer with parameters of type ITimedEvent
 void IEventTrackingActivationBuffer.enqueueTimedEvent(ITimedEvent timedEvent)
          enqueue the timed event to the model's event queue and track said event
 

Uses of ITimedEvent in org.jactr.modules.pm.common.buffer
 

Methods in org.jactr.modules.pm.common.buffer with parameters of type ITimedEvent
 void AbstractPMActivationBuffer6.enqueueTimedEvent(ITimedEvent timedEvent)
          called when we want to queue a timed event onto the model's event queue this also tracks all the pending events so that if they fire or get aborted we are notified, and it permits us to abort when a clear is called
 void AbstractCapacityPMActivationBuffer6.enqueueTimedEvent(ITimedEvent timedEvent)
          called when we want to queue a timed event onto the model's event queue this also tracks all the pending events so that if they fire or get aborted we are notified, and it permits us to abort when a clear is called
 

Uses of ITimedEvent in org.jactr.modules.pm.common.efferent
 

Classes in org.jactr.modules.pm.common.efferent that implement ITimedEvent
 class AbstractEfferentTimedEvent<E extends IEfferentCommand>
          timed event meant to deal with efferent commands.
 

Uses of ITimedEvent in org.jactr.modules.pm.motor.buffer.event
 

Classes in org.jactr.modules.pm.motor.buffer.event that implement ITimedEvent
 class MotorTimedEvent
           
 

Uses of ITimedEvent in org.jactr.modules.pm.visual.timedevent
 

Classes in org.jactr.modules.pm.visual.timedevent that implement ITimedEvent
 class ReencodingTimedEvent