RTI Connext Java API
Version 5.1.0
|
A collection of flags used to configure threads of execution. More...
Static Public Attributes | |
static final int | THREAD_SETTINGS_KIND_MASK_DEFAULT |
The mask of default thread options. | |
static final int | THREAD_SETTINGS_FLOATING_POINT |
Code executed within the thread may perform floating point operations. | |
static final int | THREAD_SETTINGS_STDIO |
Code executed within the thread may access standard I/O. | |
static final int | THREAD_SETTINGS_REALTIME_PRIORITY |
The thread will be scheduled on a FIFO basis. | |
static final int | THREAD_SETTINGS_PRIORITY_ENFORCE |
Strictly enforce this thread's priority. | |
static final int | THREAD_SETTINGS_CANCEL_ASYNCHRONOUS |
Allows the thread to be cancelled without first reaching a cancellable state or cancellation point. | |
A collection of flags used to configure threads of execution.
Not all of these options may be relevant for all operating systems. Consult Platform Notes for additional details.
|
static |
Code executed within the thread may perform floating point operations.
Currently applicable only for VxWorks platforms, where user callbacks use floating-point operations.
|
static |
Code executed within the thread may access standard I/O.
Currently applicable only for VxWorks platforms, where user callbacks do standard I/O operations.
|
static |
The thread will be scheduled on a FIFO basis.
|
static |
Strictly enforce this thread's priority.
|
static |
Allows the thread to be cancelled without first reaching a cancellable state or cancellation point.