RTI Connext Java API Version 7.2.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. More...
 
static final int THREAD_SETTINGS_FLOATING_POINT
 Code executed within the thread may perform floating point operations. Currently applicable only for VxWorks platforms, where user callbacks use floating-point operations. More...
 
static final int THREAD_SETTINGS_STDIO
 Code executed within the thread may access standard I/O. Currently applicable only for VxWorks platforms, where user callbacks do standard I/O operations. More...
 
static final int THREAD_SETTINGS_REALTIME_PRIORITY
 The thread will be scheduled on a FIFO basis. More...
 
static final int THREAD_SETTINGS_PRIORITY_ENFORCE
 Strictly enforce this thread's priority. More...
 
static final int THREAD_SETTINGS_CANCEL_ASYNCHRONOUS
 Allows the thread to be cancelled without first reaching a cancellable state or cancellation point. More...
 

Detailed Description

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.

See also
com.rti.dds.infrastructure.ThreadSettingsKindMask

Member Data Documentation

◆ THREAD_SETTINGS_FLOATING_POINT

final int THREAD_SETTINGS_FLOATING_POINT
static

Code executed within the thread may perform floating point operations. Currently applicable only for VxWorks platforms, where user callbacks use floating-point operations.

◆ THREAD_SETTINGS_STDIO

final int THREAD_SETTINGS_STDIO
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.

◆ THREAD_SETTINGS_REALTIME_PRIORITY

final int THREAD_SETTINGS_REALTIME_PRIORITY
static

The thread will be scheduled on a FIFO basis.

◆ THREAD_SETTINGS_PRIORITY_ENFORCE

final int THREAD_SETTINGS_PRIORITY_ENFORCE
static

Strictly enforce this thread's priority.

◆ THREAD_SETTINGS_CANCEL_ASYNCHRONOUS

final int THREAD_SETTINGS_CANCEL_ASYNCHRONOUS
static

Allows the thread to be cancelled without first reaching a cancellable state or cancellation point.