Uses of Interface
javax.realtime.Schedulable

Uses of Schedulable in javax.realtime
 

Classes in javax.realtime that implement Schedulable
 class AsyncEventHandler
          An asynchronous event handler encapsulates code that is released after an instance of AsyncEvent to which it is attached occurs.
 class BoundAsyncEventHandler
          A bound asynchronous event handler is an instance of AsyncEventHandler that is permanently bound to a dedicated real-time thread.
 class NoHeapRealtimeThread
          A NoHeapRealtimeThread is a specialized form of RealtimeThread.
 class RealtimeThread
          Class RealtimeThread extends Thread and adds access to real-time services such as asynchronous transfer of control, non-heap memory, and advanced scheduler services.
 

Methods in javax.realtime with parameters of type Schedulable
protected  boolean PriorityScheduler.addToFeasibility(Schedulable schedulable)
          Inform this scheduler and cooperating facilities that the resource demands of the given instance of Schedulable will be considered in the feasibility analysis of the associated Scheduler until further notice.
protected abstract  boolean Scheduler.addToFeasibility(Schedulable schedulable)
          Inform this scheduler and cooperating facilities that the resource demands of the given instance of Schedulable will be considered in the feasibility analysis of the associated Scheduler until further notice.
 void PriorityScheduler.fireSchedulable(Schedulable schedulable)
          Trigger the execution of a schedulable object (like an AsyncEventHandler).
abstract  void Scheduler.fireSchedulable(Schedulable schedulable)
          Trigger the execution of a schedulable object (like an AsyncEventHandler).
protected  boolean PriorityScheduler.removeFromFeasibility(Schedulable schedulable)
          Inform this scheduler and cooperating facilities that the resource demands of the given instance of Schedulable should no longer be considered in the feasibility analysis of the associated Scheduler.
protected abstract  boolean Scheduler.removeFromFeasibility(Schedulable schedulable)
          Inform this scheduler and cooperating facilities that the resource demands of the given instance of Schedulable should no longer be considered in the feasibility analysis of the associated Scheduler.
 boolean PriorityScheduler.setIfFeasible(Schedulable schedulable, ReleaseParameters release, MemoryParameters memory)
          This method first performs a feasibility analysis using the proposed parameter objects as replacements for the current parameters of schedulable.
abstract  boolean Scheduler.setIfFeasible(Schedulable schedulable, ReleaseParameters release, MemoryParameters memory)
          This method first performs a feasibility analysis using the proposed parameter objects as replacements for the current parameters of schedulable.
 boolean PriorityScheduler.setIfFeasible(Schedulable schedulable, ReleaseParameters release, MemoryParameters memory, ProcessingGroupParameters group)
          This method first performs a feasibility analysis using the proposed parameter objects as replacements for the current parameters of schedulable.
abstract  boolean Scheduler.setIfFeasible(Schedulable schedulable, ReleaseParameters release, MemoryParameters memory, ProcessingGroupParameters group)
          This method first performs a feasibility analysis using the proposed parameter objects as replacements for the current parameters of schedulable.
 boolean PriorityScheduler.setIfFeasible(Schedulable schedulable, SchedulingParameters sched, ReleaseParameters release, MemoryParameters memory, ProcessingGroupParameters group)
          This method first performs a feasibility analysis using the proposed parameter objects as replacements for the current parameters of schedulable.
abstract  boolean Scheduler.setIfFeasible(Schedulable schedulable, SchedulingParameters scheduling, ReleaseParameters release, MemoryParameters memory, ProcessingGroupParameters group)
          This method first performs a feasibility analysis using the proposed parameter objects as replacements for the current parameters of schedulable.