UM Java API
6.16.1
|
Public Member Functions | |
LBMReceiverStatistics () | |
LBMReceiverStatistics (UMMonAttributes attributes, ReceiverTransport rcvStats) throws LBMException | |
LBMReceiverStatistics (LBMMonitorReceiver lbmmonrcv, ByteBuffer attributeBuffer, ByteBuffer rcvStats) throws LBMException | |
LBMReceiverStatistics (LBMReceiver lbmrcv, int maxStats) throws LBMException | |
LBMReceiverStatistics (LBMContext lbmctx, int maxStats) throws LBMException | |
LBMReceiverStatistics (LBMReceiver lbmrcv, String source) throws LBMException | |
LBMReceiverStatistics (LBMHFXReceiver lbmhfxrcv, String source) throws LBMException | |
LBMReceiverStatistics (LBMHFXReceiver lbmhfxrcv, int maxStats) throws LBMException | |
void | refresh (LBMReceiver lbmrcv, int maxStats) throws LBMException |
void | refresh (LBMContext lbmctx, int maxStats) throws LBMException |
void | refresh (LBMReceiver lbmrcv, String source) throws LBMException |
void | refresh (LBMHFXReceiver lbmhfxrcv, String source) throws LBMException |
void | refresh (LBMHFXReceiver lbmhfxrcv, int maxStats) throws LBMException |
void | dispose () |
int | size () |
int | type () throws LBMException |
int | type (int n) throws LBMException |
String | typeName () throws LBMException |
String | typeName (int n) throws LBMException |
String | source () throws LBMException |
String | source (int n) throws LBMException |
long | bytesReceived () throws LBMException |
long | bytesReceived (int n) throws LBMException |
long | messagesReceived () throws LBMException |
long | messagesReceived (int n) throws LBMException |
long | nakPacketsSent () throws LBMException |
long | nakPacketsSent (int n) throws LBMException |
long | naksSent () throws LBMException |
long | naksSent (int n) throws LBMException |
long | lost () throws LBMException |
long | lost (int n) throws LBMException |
long | ncfsIgnored () throws LBMException |
long | ncfsIgnored (int n) throws LBMException |
long | ncfsShed () throws LBMException |
long | ncfsShed (int n) throws LBMException |
long | ncfsRetransmissionDelay () throws LBMException |
long | ncfsRetransmissionDelay (int n) throws LBMException |
long | ncfsUnknown () throws LBMException |
long | ncfsUnknown (int n) throws LBMException |
long | minimumRecoveryTime () throws LBMException |
long | minimumRecoveryTime (int n) throws LBMException |
long | meanRecoveryTime () throws LBMException |
long | meanRecoveryTime (int n) throws LBMException |
long | maximumRecoveryTime () throws LBMException |
long | maximumRecoveryTime (int n) throws LBMException |
long | minimumNakTransmissions () throws LBMException |
long | minimumNakTransmissions (int n) throws LBMException |
long | meanNakTransmissions () throws LBMException |
long | meanNakTransmissions (int n) throws LBMException |
long | maximumNakTransmissions () throws LBMException |
long | maximumNakTransmissions (int n) throws LBMException |
long | duplicateMessages () throws LBMException |
long | duplicateMessages (int n) throws LBMException |
long | unrecoveredMessagesWindowAdvance () throws LBMException |
long | unrecoveredMessagesWindowAdvance (int n) throws LBMException |
long | unrecoveredMessagesNakGenerationTimeout () throws LBMException |
long | unrecoveredMessagesNakGenerationTimeout (int n) throws LBMException |
long | lbmMessagesReceived () throws LBMException |
long | lbmMessagesReceived (int n) throws LBMException |
long | lbmRequestsReceived () throws LBMException |
long | lbmRequestsReceived (int n) throws LBMException |
long | noTopicMessagesReceived () throws LBMException |
long | noTopicMessagesReceived (int n) throws LBMException |
long | datagramsDroppedIncorrectSize () throws LBMException |
long | datagramsDroppedIncorrectSize (int n) throws LBMException |
long | datagramsDroppedType () throws LBMException |
long | datagramsDroppedType (int n) throws LBMException |
long | datagramsDroppedVersion () throws LBMException |
long | datagramsDroppedVersion (int n) throws LBMException |
long | datagramsDroppedHeader () throws LBMException |
long | datagramsDroppedHeader (int n) throws LBMException |
long | datagramsDroppedOther () throws LBMException |
long | datagramsDroppedOther (int n) throws LBMException |
long | datagramsDroppedSID () throws LBMException |
long | datagramsDroppedSID (int n) throws LBMException |
long | outOfOrder () throws LBMException |
long | outOfOrder (int n) throws LBMException |
String | displayString (String aString) |
String | getApplicationSourceId () |
InetAddress | getSender () throws UnknownHostException |
Date | getTimestamp () |
long | getProcessId () |
long | getContextId () |
String | getContextInstance () |
long | getDomainId () |
Protected Member Functions | |
void | finalize () |
String | getHexString (byte[] raw) |
void | setSender (long ip) |
void | setSenderIpv4Address (String ip) throws LBMException |
void | setTimestamp (long ts) |
void | setApplicationSourceId (String appid) |
void | setProcessId (long pid) |
void | setContextId (long cid) |
void | setContextInstance (String cinst) |
void | setDomainId (long did) |
LBM Receiver Transport Statistics
This object provides user monitoring with access to statistics of an application being monitored. The user monitoring code can be part of the application being monitored (i.e. the application can be "self-monitoring"), or the monitoring code can be remote, using the lbmmon infrastructure to deliver statistics.
Note that when stats are sampled, the fields in the structure are not necessarily from the same instant in time. The structure might be updated concurrently with it being sampled, and while each structure field is atomically read, the field values can be skewed slightly across time.
com.latencybusters.lbm.LBMReceiverStatistics.LBMReceiverStatistics | ( | ) |
Instantiate an empty object containing no statistics.
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.LBMReceiverStatistics().
com.latencybusters.lbm.LBMReceiverStatistics.LBMReceiverStatistics | ( | UMMonAttributes | attributes, |
ReceiverTransport | rcvStats | ||
) | throws LBMException |
Instantiate object containing the set of receiver transport statistics for a given receiver transport.
attributes | An UMMonAttributesProtos.UMMonAttributes |
rcvStats | An UMSMonProtos.Stats.ReceiverTransport |
LBMException | if any error occurred retrieving receiver statistics. |
References com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTIPC, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRM, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRU, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTSMX, and com.latencybusters.lbm.LBM.TRANSPORT_STAT_TCP.
com.latencybusters.lbm.LBMReceiverStatistics.LBMReceiverStatistics | ( | LBMMonitorReceiver | lbmmonrcv, |
ByteBuffer | attributeBuffer, | ||
ByteBuffer | rcvStats | ||
) | throws LBMException |
Instantiate object containing the set of receiver transport statistics for a given receiver transport.
lbmmonrcv | LBMMonitorReceiver that received this packet. |
attributeBuffer | A ByteBuffer of packet attributes passed to the passthrough callback |
rcvStats | A ByteBuffer of CSV statistics passed to the passthrough callback |
LBMException | if any error occurred parsing receiver statistics. |
References com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTIPC, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRM, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRU, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTSMX, and com.latencybusters.lbm.LBM.TRANSPORT_STAT_TCP.
com.latencybusters.lbm.LBMReceiverStatistics.LBMReceiverStatistics | ( | LBMReceiver | lbmrcv, |
int | maxStats | ||
) | throws LBMException |
Instantiate object containing the aggregate set of statistics for a particular receiver. This constructor will throw LBMMonitorEInvalException if maxStats is less than the available number of transport statistical sets.
lbmrcv | LBMReceiver object |
maxStats | Maximum number of sources |
LBMException | if any error occurred retrieving receiver statistics. |
References com.latencybusters.lbm.LBMReceiverStatistics.refresh().
com.latencybusters.lbm.LBMReceiverStatistics.LBMReceiverStatistics | ( | LBMContext | lbmctx, |
int | maxStats | ||
) | throws LBMException |
Instantiate object containing the aggregate set of statistics for a particular context. This constructor will throw LBMMonitorEInvalException if maxStats is less than the available number of transport statistical sets.
lbmctx | LBMContext object |
maxStats | Maximum number of sources |
LBMException | if any error occurred retrieving receiver statistics. |
References com.latencybusters.lbm.LBMReceiverStatistics.refresh().
com.latencybusters.lbm.LBMReceiverStatistics.LBMReceiverStatistics | ( | LBMReceiver | lbmrcv, |
String | source | ||
) | throws LBMException |
Instantiate object containing the current set of statistics for a particular receiver and source
lbmrcv | LBMReceiver object |
source | Source string (as returned by LBMMesage source()) that specifies the set of statistics to retrieve. |
LBMException | if any error occurred retrieving receiver statistics. |
References com.latencybusters.lbm.LBMReceiverStatistics.LBMReceiverStatistics(), and com.latencybusters.lbm.LBMReceiverStatistics.refresh().
long com.latencybusters.lbm.LBMReceiverStatistics.bytesReceived | ( | ) | throws LBMException |
Number of datagram bytes received (TCP, LBT-RM, LBT-RU, LBT-IPC, LBT-RDMA) or complete message bytes received (BROKER). The total of lengths of all transport packets, including UM header information (except BROKER). This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.bytesReceived | ( | int | n | ) | throws LBMException |
Number of datagram bytes received (TCP, LBT-RM, LBT-RU, LBT-IPC, LBT-RDMA) or complete message bytes received (BROKER). The total of lengths of all transport packets, including UM header information (except BROKER). This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedHeader | ( | ) | throws LBMException |
Number of datagrams discarded due to bad header type. These datagrams appeared to be intact, but with an unrecognizable header format.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedHeader | ( | int | n | ) | throws LBMException |
Number of datagrams discarded due to bad header type. These datagrams appeared to be intact, but with an unrecognizable header format.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedIncorrectSize | ( | ) | throws LBMException |
Number of datagrams discarded due to being smaller than the size designated in the datagram's size field.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedIncorrectSize | ( | int | n | ) | throws LBMException |
Number of datagrams discarded due to being smaller than the size designated in the datagram's size field.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedOther | ( | ) | throws LBMException |
Number of unrecognizable datagrams discarded due to reasons other than those determined by the above counts. They could be garbled, or possibly be from foreign or incompatible software at the other end.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedOther | ( | int | n | ) | throws LBMException |
Number of unrecognizable datagrams discarded due to reasons other than those determined by the above counts. They could be garbled, or possibly be from foreign or incompatible software at the other end.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedSID | ( | ) | throws LBMException |
Number of datagrams discarded due to session ID mismatch. These datagrams appeared to be correctly formed, but with an unmatched/unrecognized session ID field.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedSID | ( | int | n | ) | throws LBMException |
Number of datagrams discarded due to session ID mismatch. These datagrams appeared to be correctly formed, but with an unmatched/unrecognized session ID field.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedType | ( | ) | throws LBMException |
Number of datagrams discarded due to bad packet type. The datagram's type field must match the expectations of the receiver transport.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedType | ( | int | n | ) | throws LBMException |
Number of datagrams discarded due to bad packet type. The datagram's type field must match the expectations of the receiver transport.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedVersion | ( | ) | throws LBMException |
Number of datagrams discarded due to version mismatch. The datagram's version field must match the expectations of the receiver transport.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedVersion | ( | int | n | ) | throws LBMException |
Number of datagrams discarded due to version mismatch. The datagram's version field must match the expectations of the receiver transport.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
void com.latencybusters.lbm.LBMReceiverStatistics.dispose | ( | ) |
Free memory associated with this set of statistics.
Referenced by com.latencybusters.lbm.LBMObjectRecycler.close(), and com.latencybusters.lbm.LBMReceiverStatistics.finalize().
long com.latencybusters.lbm.LBMReceiverStatistics.duplicateMessages | ( | ) | throws LBMException |
Number of duplicate datagrams received (LBT-RM, LBT-RU). A large number can indicate a lossy network, primarily due to other receiver transports requesting retransmissions that this receiver transport has already successfully received. Such duplicates require extra effort for filtering, and this should be investigated. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.duplicateMessages | ( | int | n | ) | throws LBMException |
Number of duplicate datagrams received (LBT-RM, LBT-RU). A large number can indicate a lossy network, primarily due to other receiver transports requesting retransmissions that this receiver transport has already successfully received. Such duplicates require extra effort for filtering, and this should be investigated. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
|
protected |
This method is for internal use only, and is not supported for customer applications.
References com.latencybusters.lbm.LBMReceiverStatistics.dispose().
|
inherited |
Retrieve the application source identifier associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
Referenced by com.latencybusters.lbm.LBMStatistics.getDomainId().
|
inherited |
Retrieve the sending context ID associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
|
inherited |
Retrieve the sending context instance associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
Referenced by com.latencybusters.lbm.LBMStatistics.getDomainId().
|
inherited |
Retrieve the sending domain ID associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
References com.latencybusters.lbm.LBMStatistics.getApplicationSourceId(), com.latencybusters.lbm.LBMStatistics.getContextInstance(), com.latencybusters.lbm.LBMStatistics.getSender(), and com.latencybusters.lbm.LBMStatistics.getTimestamp().
|
inherited |
Retrieve the sending process ID associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
|
inherited |
Retrieve the IP sender address associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
UnknownHostException | if IP address is of illegal length. |
Referenced by com.latencybusters.lbm.LBMStatistics.getDomainId().
|
inherited |
Retrieve the timestamp associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
Referenced by com.latencybusters.lbm.LBMStatistics.getDomainId().
long com.latencybusters.lbm.LBMReceiverStatistics.lbmMessagesReceived | ( | ) | throws LBMException |
Number of messages or message fragments received over a transport (TCP, LBM-RM, LBT-RU, LBT-IPC, LBT-RDMA). A single datagram may contain one or more messages or a fragment of a larger message. For fragmented messages larger than the transport's maximum size configuration option, this count reflects the number of datagrams used to constitute those messages. Thus, this number is equal to or greater than the datagram counter (messagesReceived, above). This number also includes messages received for which there was no interested receiver, tallied in the noTopicMessagesReceived counter (below). This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.lbmMessagesReceived | ( | int | n | ) | throws LBMException |
Number of messages or message fragments received over a transport (TCP, LBM-RM, LBT-RU, LBT-IPC, LBT-RDMA). A single datagram may contain one or more messages or a fragment of a larger message. For fragmented messages larger than the transport's maximum size configuration option, this count reflects the number of datagrams used to constitute those messages. Thus, this number is equal to or greater than the datagram counter (messagesReceived, above). This number also includes messages received for which there was no interested receiver, tallied in the noTopicMessagesReceived counter (below). encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.lbmRequestsReceived | ( | ) | throws LBMException |
Number of UM request messages received (message type LBM_MSG_REQUEST) (TCP, LBM-RM, LBT-RU, LBT-IPC, LBT-RDMA). This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.lbmRequestsReceived | ( | int | n | ) | throws LBMException |
Number of UM request messages received (message type LBM_MSG_REQUEST) (TCP, LBM-RM, LBT-RU, LBT-IPC, LBT-RDMA). This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.lost | ( | ) | throws LBMException |
Number of datagrams that have been detected as lost. (LBT-RM, LBT-RU). This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.lost(), and com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.lost | ( | int | n | ) | throws LBMException |
Number of datagrams that have been detected as lost. (LBT-RM, LBT-RU). This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
References com.latencybusters.lbm.LBMReceiverStatistics.lost().
long com.latencybusters.lbm.LBMReceiverStatistics.maximumNakTransmissions | ( | ) | throws LBMException |
Maximum number of times per lost message that a receiver transport transmitted a NAK, i.e., the highest value collected so far (LBT-RM, LBT-RU). A value higher than 1 suggests that there may have been some unrecoverable loss on the network during the sample period. A significantly high value compared to the mean number) implies an isolated incident. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.maximumNakTransmissions | ( | int | n | ) | throws LBMException |
Maximum number of times per lost message that a receiver transport transmitted a NAK, i.e., the highest value collected so far (LBT-RM, LBT-RU). A value higher than 1 suggests that there may have been some unrecoverable loss on the network during the sample period. A significantly high value compared to the mean number) implies an isolated incident. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.maximumRecoveryTime | ( | ) | throws LBMException |
Maximum time (in milliseconds), i.e., the longest time recorded so far, for a lost message to be recovered (LBT-RM, LBT-RU). If this time is near or equal to the configuration option transport_lbtrm_nak_generation_interval setting, you have likely experienced some level of unrecoverable loss. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.maximumRecoveryTime | ( | int | n | ) | throws LBMException |
Maximum time (in milliseconds), i.e., the longest time recorded so far, for a lost message to be recovered (LBT-RM, LBT-RU). If this time is near or equal to the configuration option transport_lbtrm_nak_generation_interval setting, you have likely experienced some level of unrecoverable loss. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.meanNakTransmissions | ( | ) | throws LBMException |
Mean number of times per lost message that a receiver transport transmitted a NAK (LBT-RM, LBT-RU). If this time is near or equal to the configuration option transport_lbtrm_nak_generation_interval setting, you have likely experienced some level of unrecoverable loss. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.meanNakTransmissions | ( | int | n | ) | throws LBMException |
Mean number of times per lost message that a receiver transport transmitted a NAK (LBT-RM, LBT-RU). If this time is near or equal to the configuration option transport_lbtrm_nak_generation_interval setting, you have likely experienced some level of unrecoverable loss. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.meanRecoveryTime | ( | ) | throws LBMException |
Mean time (in milliseconds) in which loss recovery was accomplished (LBT-RM, LBT-RU). This is an exponentially weighted moving average (weighted to more recent) for accumulated measured recovery times. Ideally this field should be as close to your minimum recovery time (nak_stm_min, above) as possible. High mean recovery times indicate a lossy network. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.meanRecoveryTime | ( | int | n | ) | throws LBMException |
Mean time (in milliseconds) in which loss recovery was accomplished (LBT-RM, LBT-RU). This is an exponentially weighted moving average (weighted to more recent) for accumulated measured recovery times. Ideally this field should be as close to your minimum recovery time (nak_stm_min, above) as possible. High mean recovery times indicate a lossy network. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.messagesReceived | ( | ) | throws LBMException |
Number of datagrams received (LBT-RM, LBT-RU, LBT-IPC, LBT-RDMA) or complete messages received (BROKER). Depending on batching settings, a single datagram may contain one or more messages, or a fragment of a larger message. Larger messages are split into fragment sizes limited by the transport's configuration option transport_xxxx_datagram_max_size. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.messagesReceived | ( | int | n | ) | throws LBMException |
Number of datagrams received (LBT-RM, LBT-RU, LBT-IPC, LBT-RDMA) or complete messages received (BROKER). Depending on batching settings, a single datagram may contain one or more messages, or a fragment of a larger message. Larger messages are split into fragment sizes limited by the transport's configuration option transport_xxxx_datagram_max_size. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.minimumNakTransmissions | ( | ) | throws LBMException |
Minimum number of times per lost message that a receiver transport transmitted a NAK, i.e., the lowest value collected so far (LBT-RM, LBT-RU). A value greater than 1 indicates a chronically lossy network. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.minimumNakTransmissions | ( | int | n | ) | throws LBMException |
Minimum number of times per lost message that a receiver transport transmitted a NAK, i.e., the lowest value collected so far (LBT-RM, LBT-RU). A value greater than 1 indicates a chronically lossy network. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.minimumRecoveryTime | ( | ) | throws LBMException |
Minimum time (in milliseconds), i.e., the shortest time recorded so far, for a lost message to be recovered (LBT-RM, LBT-RU ). If this time is greater than configuration option transport_lbtrm_nak_backoff_interval, it may be taking multiple NAKs to initiate retransmissions, indicating a lossy network. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.minimumRecoveryTime | ( | int | n | ) | throws LBMException |
Minimum time (in milliseconds), i.e., the shortest time recorded so far, for a lost message to be recovered (LBT-RM, LBT-RU ). If this time is greater than configuration option transport_lbtrm_nak_backoff_interval, it may be taking multiple NAKs to initiate retransmissions, indicating a lossy network. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.nakPacketsSent | ( | ) | throws LBMException |
Number of NAK packets sent by the receiver transport (LBT-RM, LBT-RU). UM batches NAKs into NAK packets to save network bandwidth. This should always be less than or equal to the number of individual NAKs sent (naksSent, below). This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.nakPacketsSent | ( | int | n | ) | throws LBMException |
Number of NAK packets sent by the receiver transport (LBT-RM, LBT-RU). UM batches NAKs into NAK packets to save network bandwidth. This should always be less than or equal to the number of individual NAKs sent (naksSent, below). This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.naksSent | ( | ) | throws LBMException |
Number of individual NAKs sent by the receiver transport (LBT-RM, LBT-RU). This may differ from the tally of lost datagrams (below) due to reasons such as
This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.naksSent | ( | int | n | ) | throws LBMException |
Number of individual NAKs sent by the receiver transport (LBT-RM, LBT-RU). This may differ from the tally of lost datagrams (below) due to reasons such as
This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.ncfsIgnored | ( | ) | throws LBMException |
Number of NCFs received from a source transport with reason code "ignored" (LBT-RM, LBT-RU). If a source transport receives a NAK for a datagram that it has recently retransmitted, it sends an "NCF ignored" and does not retransmit. How "recently" is determined by the configuration option source transport_lbtrm_ignore_interval (default 500ms). If this count is high, a receiver transport may be having trouble receiving retransmissions, or the ignore interval may be set too long. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.ncfsIgnored | ( | int | n | ) | throws LBMException |
Number of NCFs received from a source transport with reason code "ignored" (LBT-RM, LBT-RU). If a source transport receives a NAK for a datagram that it has recently retransmitted, it sends an "NCF ignored" and does not retransmit. How "recently" is determined by the configuration option source transport_lbtrm_ignore_interval (default 500ms). If this count is high, a receiver transport may be having trouble receiving retransmissions, or the ignore interval may be set too long. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.ncfsRetransmissionDelay | ( | ) | throws LBMException |
Number of NCFs received with reason code "rx_delay" (LBT-RM, LBT-RU). When a source transport's retransmit rate limiter prevents it from immediately retransmitting any more lost datagrams, it responds to a NAK by sending an "NCF rx_delay", then queues the retransmission for a later send. The receiver transport should wait for the retransmission and not immediately send another NAK. If this count is high, one or more crybaby receiver transports may be clogging the source transport's retransmit queue. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.ncfsRetransmissionDelay | ( | int | n | ) | throws LBMException |
Number of NCFs received with reason code "rx_delay" (LBT-RM, LBT-RU). When a source transport's retransmit rate limiter prevents it from immediately retransmitting any more lost datagrams, it responds to a NAK by sending an "NCF rx_delay", then queues the retransmission for a later send. The receiver transport should wait for the retransmission and not immediately send another NAK. If this count is high, one or more crybaby receiver transports may be clogging the source transport's retransmit queue. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.ncfsShed | ( | ) | throws LBMException |
Number of NCFs received from a source transport with reason code "shed" (LBT-RM only). When a source transport's retransmit queue and rate limiter are both at maximum, it responds to a NAK by sending an "NCF shed", and does not retransmit. The receiver transport should wait, then send another NAK. If this count is high, one or more crybaby receiver transports may be clogging the source transport's retransmit queue. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.ncfsShed | ( | int | n | ) | throws LBMException |
Number of NCFs received from a source transport with reason code "shed" (LBT-RM only). When a source transport's retransmit queue and rate limiter are both at maximum, it responds to a NAK by sending an "NCF shed", and does not retransmit. The receiver transport should wait, then send another NAK. If this count is high, one or more crybaby receiver transports may be clogging the source transport's retransmit queue. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.ncfsUnknown | ( | ) | throws LBMException |
Number of NCFs received with reason code "unknown" (LBT-RM, LBT-RU). These are NCFs with a reason code this receiver transport does not recognize. After a delay (set by configuration option for NAK suppress interval), it resends the NAK. This counter should never be greater than 0 unless applications linked with different versions of Ultra Messaging software coexist on the same network. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.ncfsUnknown | ( | int | n | ) | throws LBMException |
Number of NCFs received with reason code "unknown" (LBT-RM, LBT-RU). These are NCFs with a reason code this receiver transport does not recognize. After a delay (set by configuration option for NAK suppress interval), it resends the NAK. This counter should never be greater than 0 unless applications linked with different versions of Ultra Messaging software coexist on the same network. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.noTopicMessagesReceived | ( | ) | throws LBMException |
Number of messages received that were not for a topic of interest to the receiver (TCP, LBM-RM, LBT-RU, LBT-IPC, LBT-RDMA). A high value (relative to, or approaching lbmMessagesReceived above) indicates more CPU time required to filter out uninteresting topics, in which case, consider reconfiguring sources to filter more aggressively at the transport layer. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.noTopicMessagesReceived | ( | int | n | ) | throws LBMException |
Number of messages received that were not for a topic of interest to the receiver (TCP, LBM-RM, LBT-RU, LBT-IPC, LBT-RDMA). A high value (relative to, or approaching lbmMessagesReceived above) indicates more CPU time required to filter out uninteresting topics, in which case, consider reconfiguring sources to filter more aggressively at the transport layer. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder | ( | ) | throws LBMException |
Number of out-of-order datagrams received. A datagram is counted as out of order if it fills a previously detected sequence gap, but is not a retransmission. Note that if the duplicates counter duplicate_data, above) increases along with this statistic, this implies the arrivals of retransmitted datagrams before their originals.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder | ( | int | n | ) | throws LBMException |
Number of out-of-order datagrams received. A datagram is counted as out of order if it fills a previously detected sequence gap, but is not a retransmission. Note that if the duplicates counter duplicate_data, above) increases along with this statistic, this implies the arrivals of retransmitted datagrams before their originals.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
References com.latencybusters.lbm.LBMReceiverStatistics.bytesReceived(), com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedHeader(), com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedIncorrectSize(), com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedOther(), com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedSID(), com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedType(), com.latencybusters.lbm.LBMReceiverStatistics.datagramsDroppedVersion(), com.latencybusters.lbm.LBMReceiverStatistics.duplicateMessages(), com.latencybusters.lbm.LBMReceiverStatistics.lbmMessagesReceived(), com.latencybusters.lbm.LBMReceiverStatistics.lbmRequestsReceived(), com.latencybusters.lbm.LBMReceiverStatistics.lost(), com.latencybusters.lbm.LBMReceiverStatistics.maximumNakTransmissions(), com.latencybusters.lbm.LBMReceiverStatistics.maximumRecoveryTime(), com.latencybusters.lbm.LBMReceiverStatistics.meanNakTransmissions(), com.latencybusters.lbm.LBMReceiverStatistics.meanRecoveryTime(), com.latencybusters.lbm.LBMReceiverStatistics.messagesReceived(), com.latencybusters.lbm.LBMReceiverStatistics.minimumNakTransmissions(), com.latencybusters.lbm.LBMReceiverStatistics.minimumRecoveryTime(), com.latencybusters.lbm.LBMReceiverStatistics.nakPacketsSent(), com.latencybusters.lbm.LBMReceiverStatistics.naksSent(), com.latencybusters.lbm.LBMReceiverStatistics.ncfsIgnored(), com.latencybusters.lbm.LBMReceiverStatistics.ncfsRetransmissionDelay(), com.latencybusters.lbm.LBMReceiverStatistics.ncfsShed(), com.latencybusters.lbm.LBMReceiverStatistics.ncfsUnknown(), com.latencybusters.lbm.LBMReceiverStatistics.noTopicMessagesReceived(), com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder(), com.latencybusters.lbm.LBMReceiverStatistics.source(), com.latencybusters.lbm.LBM.TRANSPORT_STAT_BROKER, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTIPC, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRDMA, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRM, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRU, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTSMX, com.latencybusters.lbm.LBM.TRANSPORT_STAT_TCP, com.latencybusters.lbm.LBMReceiverStatistics.type(), com.latencybusters.lbm.LBMReceiverStatistics.typeName(), com.latencybusters.lbm.LBMReceiverStatistics.unrecoveredMessagesNakGenerationTimeout(), and com.latencybusters.lbm.LBMReceiverStatistics.unrecoveredMessagesWindowAdvance().
void com.latencybusters.lbm.LBMReceiverStatistics.refresh | ( | LBMReceiver | lbmrcv, |
int | maxStats | ||
) | throws LBMException |
Refresh the aggregate set of statistics for a particular receiver. This method will throw LBMMonitorEInvalException if maxStats is less than the available number of transport statistical sets.
lbmrcv | LBMReceiver object |
maxStats | Maximum number of sources |
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMContext.getReceiverStatistics(), com.latencybusters.lbm.LBMHFXReceiver.getStatistics(), com.latencybusters.lbm.LBMReceiver.getStatistics(), com.latencybusters.lbm.LBMReceiverStatistics.LBMReceiverStatistics(), and com.latencybusters.lbm.LBMReceiverStatistics.refresh().
void com.latencybusters.lbm.LBMReceiverStatistics.refresh | ( | LBMContext | lbmctx, |
int | maxStats | ||
) | throws LBMException |
Refresh the aggregate set of statistics for a particular context. This method will throw LBMMonitorEInvalException if maxStats is less than the available number of transport statistical sets.
lbmctx | LBMContext object |
maxStats | Maximum number of sources |
LBMException | if any error occurred retrieving receiver statistics. |
void com.latencybusters.lbm.LBMReceiverStatistics.refresh | ( | LBMReceiver | lbmrcv, |
String | source | ||
) | throws LBMException |
Refresh the set of statistics for a particular receiver and source
lbmrcv | LBMReceiver object |
source | Source string (as returned by LBMMesage source()) that specifies the set of statistics to retrieve. |
LBMException | if any error occurred retrieving receiver statistics. |
References com.latencybusters.lbm.LBMReceiverStatistics.refresh(), and com.latencybusters.lbm.LBMReceiverStatistics.source().
int com.latencybusters.lbm.LBMReceiverStatistics.size | ( | ) |
Number of transport statistical sets encapsulated within this object
String com.latencybusters.lbm.LBMReceiverStatistics.source | ( | ) | throws LBMException |
Source of transport as a string. The string format depends on transport type and is described under LBMTransportSourceInfo. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder(), com.latencybusters.lbm.LBMReceiverStatistics.refresh(), and com.latencybusters.lbm.LBMReceiverStatistics.source().
String com.latencybusters.lbm.LBMReceiverStatistics.source | ( | int | n | ) | throws LBMException |
Source of transport as a string. The string format depends on transport type and is described under LBMTransportSourceInfo. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
References com.latencybusters.lbm.LBMReceiverStatistics.source().
int com.latencybusters.lbm.LBMReceiverStatistics.type | ( | ) | throws LBMException |
Transport type (TCP, LBT-RM, LBT-RU, etc.). This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder(), and com.latencybusters.lbm.LBMReceiverStatistics.type().
int com.latencybusters.lbm.LBMReceiverStatistics.type | ( | int | n | ) | throws LBMException |
Transport type (TCP, LBT-RM, LBT-RU, etc.). This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
References com.latencybusters.lbm.LBMReceiverStatistics.type().
String com.latencybusters.lbm.LBMReceiverStatistics.typeName | ( | ) | throws LBMException |
Transport type name (TCP, LBT-RM, LBT-RU, etc.). This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
String com.latencybusters.lbm.LBMReceiverStatistics.typeName | ( | int | n | ) | throws LBMException |
Transport type name (TCP, LBT-RM, LBT-RU, etc.). This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
References com.latencybusters.lbm.LBM.TRANSPORT_STAT_BROKER, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTIPC, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRDMA, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRM, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRU, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTSMX, and com.latencybusters.lbm.LBM.TRANSPORT_STAT_TCP.
long com.latencybusters.lbm.LBMReceiverStatistics.unrecoveredMessagesNakGenerationTimeout | ( | ) | throws LBMException |
Number of LBT-RM datagrams unrecovered due to a retransmission not received within the NAK generation interval (LBT-RM, LBT-RU). This is set by configuration option transport_lbtrm_nak_generation_interval; default 10,000ms. Note: Receivers for these messages' topics will also report related messages as unrecoverable, with LBM_MSG_UNRECOVERABLE_LOSS for an individual message and LBM_MSG_UNRECOVERABLE_LOSS_BURST for a burst loss event. However, it is possible for these application-level message declarations to occur even without increments to this counter, as the transport is unaware of the topic content of messages and may still be trying to deliver related lost packets. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.unrecoveredMessagesNakGenerationTimeout | ( | int | n | ) | throws LBMException |
Number of LBT-RM datagrams unrecovered due to a retransmission not received within the NAK generation interval (LBT-RM, LBT-RU). This is set by configuration option transport_lbtrm_nak_generation_interval; default 10,000ms. Note: Receivers for these messages' topics will also report related messages as unrecoverable, with LBM_MSG_UNRECOVERABLE_LOSS for an individual message and LBM_MSG_UNRECOVERABLE_LOSS_BURST for a burst loss event. However, it is possible for these application-level message declarations to occur even without increments to this counter, as the transport is unaware of the topic content of messages and may still be trying to deliver related lost packets. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |
long com.latencybusters.lbm.LBMReceiverStatistics.unrecoveredMessagesWindowAdvance | ( | ) | throws LBMException |
Number of datagrams unrecovered (LBM_MSG_UNRECOVERABLE_LOSS delivered to receiver application) due to transmission window advance (LBT-RM, LBT-RU). This means that the message was no longer in the source-side transmission window and therefore not retransmitted. The window size is set by the transport configuration option for transmission window size. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
LBMException | if any error occurred retrieving receiver statistics. |
Referenced by com.latencybusters.lbm.LBMReceiverStatistics.outOfOrder().
long com.latencybusters.lbm.LBMReceiverStatistics.unrecoveredMessagesWindowAdvance | ( | int | n | ) | throws LBMException |
Number of datagrams unrecovered (LBM_MSG_UNRECOVERABLE_LOSS delivered to receiver application) due to transmission window advance (LBT-RM, LBT-RU). This means that the message was no longer in the source-side transmission window and therefore not retransmitted. The window size is set by the transport configuration option for transmission window size. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
LBMException | if any error occurred retrieving receiver statistics. |