Uses of Class
javax.realtime.AsyncEventHandler

Uses of AsyncEventHandler in javax.realtime
 

Subclasses of AsyncEventHandler in javax.realtime
 class BoundAsyncEventHandler
          A bound asynchronous event handler is an instance of AsyncEventHandler that is permanently bound to a dedicated real-time thread.
 

Methods in javax.realtime that return AsyncEventHandler
 AsyncEventHandler ProcessingGroupParameters.getCostOverrunHandler()
          Gets the cost overrun handler.
 AsyncEventHandler ReleaseParameters.getCostOverrunHandler()
          Gets a reference to the cost overrun handler.
 AsyncEventHandler ProcessingGroupParameters.getDeadlineMissHandler()
          Gets the deadline miss handler.
 AsyncEventHandler ReleaseParameters.getDeadlineMissHandler()
          Gets a reference to the deadline miss handler.
 

Methods in javax.realtime with parameters of type AsyncEventHandler
 void AsyncEvent.addHandler(AsyncEventHandler handler)
          Add a handler to the set of handlers associated with this event.
static void POSIXSignalHandler.addHandler(int signal, AsyncEventHandler handler)
          Add the given AsyncEventHandler to the list of handlers of the given signal.
 boolean AsyncEvent.handledBy(AsyncEventHandler handler)
          Test to see if the handler given as the parameter is associated with this.
static void PhysicalMemoryManager.onInsertion(long base, long size, AsyncEventHandler aeh)
          Deprecated. 1.0.1 Replace with onInsertion(long, long, AsyncEvent)
 void PhysicalMemoryTypeFilter.onInsertion(long base, long size, AsyncEventHandler aeh)
          Deprecated. 1.0.1 Replace with onInsertion(long, long, AsyncEvent)
static void PhysicalMemoryManager.onRemoval(long base, long size, AsyncEventHandler aeh)
          Deprecated. 1.0.1
 void PhysicalMemoryTypeFilter.onRemoval(long base, long size, AsyncEventHandler aeh)
          Deprecated. 1.0.1
 void AsyncEvent.removeHandler(AsyncEventHandler handler)
          Remove a handler from the set associated with this event.
static void POSIXSignalHandler.removeHandler(int signal, AsyncEventHandler handler)
          Remove the given AsyncEventHandler from the list of handlers of the given signal.
 void ProcessingGroupParameters.setCostOverrunHandler(AsyncEventHandler handler)
          Sets the cost overrun handler.
 void ReleaseParameters.setCostOverrunHandler(AsyncEventHandler handler)
          Sets the cost overrun handler.
 void ProcessingGroupParameters.setDeadlineMissHandler(AsyncEventHandler handler)
          Sets the deadline miss handler.
 void ReleaseParameters.setDeadlineMissHandler(AsyncEventHandler handler)
          Sets the deadline miss handler.
 void AsyncEvent.setHandler(AsyncEventHandler handler)
          Associate a new handler with this event and remove all existing handlers.
static void POSIXSignalHandler.setHandler(int signal, AsyncEventHandler handler)
          Set the given AsyncEventHandler as the handler of the given signal.
 

Constructors in javax.realtime with parameters of type AsyncEventHandler
AperiodicParameters(RelativeTime cost, RelativeTime deadline, AsyncEventHandler overrunHandler, AsyncEventHandler missHandler)
          Create an AperiodicParameters object.
OneShotTimer(HighResolutionTime time, AsyncEventHandler handler)
          Create an instance of OneShotTimer, based on the Clock associated with the time parameter, that will execute its fire method according to the given time.
OneShotTimer(HighResolutionTime time, Clock clock, AsyncEventHandler handler)
          Create an instance of OneShotTimer, based on the given clock, that will execute its fire method according to the given time.
PeriodicParameters(HighResolutionTime start, RelativeTime period, RelativeTime cost, RelativeTime deadline, AsyncEventHandler overrunHandler, AsyncEventHandler missHandler)
          Create a PeriodicParameters object.
PeriodicTimer(HighResolutionTime start, RelativeTime interval, AsyncEventHandler handler)
          Create an instance of PeriodicTimer that executes its fire method periodically.
PeriodicTimer(HighResolutionTime start, RelativeTime interval, Clock clock, AsyncEventHandler handler)
          Create an instance of PeriodicTimer that executes its fire method periodically.
ProcessingGroupParameters(HighResolutionTime start, RelativeTime period, RelativeTime cost, RelativeTime deadline, AsyncEventHandler overrunHandler, AsyncEventHandler missHandler)
          Create a ProcessingGroupParameters object.
ReleaseParameters(RelativeTime cost, RelativeTime deadline, AsyncEventHandler overrunHandler, AsyncEventHandler missHandler)
          Create a new instance of ReleaseParameters with the given parameter values.
SporadicParameters(RelativeTime minInterarrival, RelativeTime cost, RelativeTime deadline, AsyncEventHandler overrunHandler, AsyncEventHandler missHandler)
          Create a SporadicParameters object.
Timer(HighResolutionTime time, Clock clock, AsyncEventHandler handler)
          Create a timer that fires according to the given time, based on the Clock clock and is handled by the specified AsyncEventHandler handler.