RTI Connext Java API Version 7.2.0
NetworkCaptureTrafficKind Class Reference

Bitmap used to specify whether we want to capture inbound or outbound traffic. More...

Static Public Attributes

static final int TRAFFIC_OUT
 Do not capture outbound traffic. More...
 
static final int TRAFFIC_IN
 Do not capture inbound traffic. More...
 
static final int MASK_DEFAULT
 Default mask for com.rti.ndds.utility.NetworkCaptureTrafficKind. More...
 
static final int MASK_NONE
 Do not capture any traffic. More...
 
static final int MASK_ALL
 Capture all traffic (both inbound and outbound). More...
 

Detailed Description

Bitmap used to specify whether we want to capture inbound or outbound traffic.

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

Member Data Documentation

◆ TRAFFIC_OUT

final int TRAFFIC_OUT
static

Do not capture outbound traffic.

◆ TRAFFIC_IN

final int TRAFFIC_IN
static

Do not capture inbound traffic.

◆ MASK_DEFAULT

final int MASK_DEFAULT
static

Default mask for com.rti.ndds.utility.NetworkCaptureTrafficKind.

It is equivalent to com.rti.ndds.utility.NetworkCaptureTrafficKind.MASK_ALL.

[default] Capture all traffic: inbound and outbound.

◆ MASK_NONE

final int MASK_NONE
static

Do not capture any traffic.

◆ MASK_ALL

final int MASK_ALL
static

Capture all traffic (both inbound and outbound).

The value is equal to setting both the input and output bits of the mask: (com.rti.ndds.utility.NetworkCaptureTrafficKind.TRAFFIC_OUT | com.rti.ndds.utility.NetworkCaptureTrafficKind.TRAFFIC_IN).