RTI Connext Java API Version 7.2.0
NetworkCaptureContentKind Class Reference

Bitmap used to specify a content type, i.e., a part of the RTPS frame. More...

Static Public Attributes

static final int USER_SERIALIZED_DATA
 The serialized data coming from a user. More...
 
static final int ENCRYPTED_DATA
 The encrypted user data. More...
 
static final int MASK_DEFAULT
 Default mask for com.rti.ndds.utility.NetworkCaptureContentKind: do not remove any content. More...
 
static final int MASK_NONE
 The RTPS frames in the capture file will be saved as they are. More...
 
static final int MASK_ALL
 The RTPS frames in the capture file will not include user data (either plain or encrypted). More...
 

Detailed Description

Bitmap used to specify a content type, i.e., a part of the RTPS frame.

Several values can be combined. Read com.rti.ndds.utility.NetworkCaptureContentKind for typical combinations.

Member Data Documentation

◆ USER_SERIALIZED_DATA

final int USER_SERIALIZED_DATA
static

The serialized data coming from a user.

◆ ENCRYPTED_DATA

final int ENCRYPTED_DATA
static

The encrypted user data.

◆ MASK_DEFAULT

final int MASK_DEFAULT
static

Default mask for com.rti.ndds.utility.NetworkCaptureContentKind: do not remove any content.

It is equivalent to com.rti.ndds.utility.NetworkCaptureContentKind.MASK_NONE.

[default] Do not remove any content.

◆ MASK_NONE

final int MASK_NONE
static

The RTPS frames in the capture file will be saved as they are.

◆ MASK_ALL

final int MASK_ALL
static

The RTPS frames in the capture file will not include user data (either plain or encrypted).

Its value is the result of setting the bits for removing user data and removing encrypted data: (com.rti.ndds.utility.NetworkCaptureContentKind.USER_SERIALIZED_DATA) | com.rti.ndds.utility.NetworkCaptureContentKind.ENCRYPTED_DATA)