Uses of Interface
net.esper.schedule.ScheduleHandle

Packages that use ScheduleHandle
net.esper.core Implementation of client package interfaces, glue code 
net.esper.schedule Package for timer callback scheduling 
 

Uses of ScheduleHandle in net.esper.core
 

Classes in net.esper.core that implement ScheduleHandle
 class EPStatementHandleCallback
          Statement resource handle and callback for use with FilterService and SchedulingService.
 

Uses of ScheduleHandle in net.esper.schedule
 

Methods in net.esper.schedule with parameters of type ScheduleHandle
 void SchedulingServiceImpl.add(long afterMSec, ScheduleHandle handle, ScheduleSlot slot)
           
 void SchedulingService.add(long afterMSec, ScheduleHandle handle, ScheduleSlot slot)
          Add a callback for after the given milliseconds from the current time.
 void SchedulingServiceImpl.add(ScheduleSpec spec, ScheduleHandle handle, ScheduleSlot slot)
           
 void SchedulingService.add(ScheduleSpec scheduleSpec, ScheduleHandle handle, ScheduleSlot slot)
          Add a callback for a time specified by the schedule specification passed in based on the current time.
 void SchedulingServiceImpl.remove(ScheduleHandle handle, ScheduleSlot slot)
           
 void SchedulingService.remove(ScheduleHandle handle, ScheduleSlot slot)
          Remove a handle.
 

Method parameters in net.esper.schedule with type arguments of type ScheduleHandle
 void SchedulingServiceImpl.evaluate(Collection<ScheduleHandle> handles)
           
 void SchedulingService.evaluate(Collection<ScheduleHandle> handles)
          Evaluate the current time and add to the collection any handles scheduled for execution.