Uses of Class
javax.realtime.ProcessingGroupParameters

Uses of ProcessingGroupParameters in javax.realtime
 

Methods in javax.realtime that return ProcessingGroupParameters
 ProcessingGroupParameters AsyncEventHandler.getProcessingGroupParameters()
          Gets a reference to the ProcessingGroupParameters object for this schedulable object.
 ProcessingGroupParameters RealtimeThread.getProcessingGroupParameters()
          Gets a reference to the ProcessingGroupParameters object for this schedulable object.
 ProcessingGroupParameters Schedulable.getProcessingGroupParameters()
          Gets a reference to the ProcessingGroupParameters object for this schedulable object.
 

Methods in javax.realtime with parameters of type ProcessingGroupParameters
 boolean AsyncEventHandler.setIfFeasible(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 this.
 boolean RealtimeThread.setIfFeasible(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 this.
 boolean Schedulable.setIfFeasible(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 this.
 boolean AsyncEventHandler.setIfFeasible(ReleaseParameters release, ProcessingGroupParameters group)
          This method first performs a feasibility analysis using the proposed parameter objects as replacements for the current parameters of this.
 boolean RealtimeThread.setIfFeasible(ReleaseParameters release, ProcessingGroupParameters group)
          This method first performs a feasibility analysis using the proposed parameter objects as replacements for the current parameters of this.
 boolean Schedulable.setIfFeasible(ReleaseParameters release, ProcessingGroupParameters group)
          This method first performs a feasibility analysis using the proposed parameter objects as replacements for the current parameters of this.
 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.
 boolean AsyncEventHandler.setIfFeasible(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 this.
 boolean RealtimeThread.setIfFeasible(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 this.
 boolean Schedulable.setIfFeasible(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 this.
 void AsyncEventHandler.setProcessingGroupParameters(ProcessingGroupParameters group)
          Sets the ProcessingGroupParameters of this.
 void RealtimeThread.setProcessingGroupParameters(ProcessingGroupParameters group)
          Sets the ProcessingGroupParameters of this.
 void Schedulable.setProcessingGroupParameters(ProcessingGroupParameters group)
          Sets the ProcessingGroupParameters of this.
 boolean AsyncEventHandler.setProcessingGroupParametersIfFeasible(ProcessingGroupParameters group)
          This method first performs a feasibility analysis using the proposed parameter object as replacement for the current parameter of this.
 boolean RealtimeThread.setProcessingGroupParametersIfFeasible(ProcessingGroupParameters group)
          This method first performs a feasibility analysis using the proposed parameter object as replacement for the current parameter of this.
 boolean Schedulable.setProcessingGroupParametersIfFeasible(ProcessingGroupParameters group)
          This method first performs a feasibility analysis using the proposed parameter object as replacement for the current parameter of this.
 void AsyncEventHandler.setScheduler(Scheduler scheduler, SchedulingParameters scheduling, ReleaseParameters release, MemoryParameters memoryParameters, ProcessingGroupParameters group)
          Sets the scheduler and associated parameter objects.
 void RealtimeThread.setScheduler(Scheduler scheduler, SchedulingParameters scheduling, ReleaseParameters release, MemoryParameters memoryParameters, ProcessingGroupParameters group)
          Sets the scheduler and associated parameter objects.
 void Schedulable.setScheduler(Scheduler scheduler, SchedulingParameters scheduling, ReleaseParameters release, MemoryParameters memoryParameters, ProcessingGroupParameters group)
          Sets the scheduler and associated parameter objects.
 

Constructors in javax.realtime with parameters of type ProcessingGroupParameters
AsyncEventHandler(SchedulingParameters scheduling, ReleaseParameters release, MemoryParameters memory, MemoryArea area, ProcessingGroupParameters group, boolean nonheap)
          Create an instance of AsyncEventHandler with the specified values for scheduling parameters, release parameters, memory parameters, initial memory area, processing group parameters and non-heap flag.
AsyncEventHandler(SchedulingParameters scheduling, ReleaseParameters release, MemoryParameters memory, MemoryArea area, ProcessingGroupParameters group, boolean nonheap, java.lang.Runnable logic)
          Create an instance of AsyncEventHandler with the specified parameters.
AsyncEventHandler(SchedulingParameters scheduling, ReleaseParameters release, MemoryParameters memory, MemoryArea area, ProcessingGroupParameters group, java.lang.Runnable logic)
          Create an instance of AsyncEventHandler with the specified values for scheduling parameters, release parameters, memory parameters, initial memory area, processing group parameters and runnable logic.
BoundAsyncEventHandler(SchedulingParameters scheduling, ReleaseParameters release, MemoryParameters memory, MemoryArea area, ProcessingGroupParameters group, boolean nonheap, java.lang.Runnable logic)
          Create an instance of BoundAsyncEventHandler with the specified parameters.
NoHeapRealtimeThread(SchedulingParameters scheduling, ReleaseParameters release, MemoryParameters memory, MemoryArea area, ProcessingGroupParameters group, java.lang.Runnable logic)
          Create a real-time thread with the given characteristics and a Runnable.
RealtimeThread(SchedulingParameters scheduling, ReleaseParameters release, MemoryParameters memory, MemoryArea area, ProcessingGroupParameters group, java.lang.Runnable logic)
          Create a real-time thread with the given characteristics and a specified Runnable.