Stats_Tx Enumeration

Solclient

Stats_Tx Enumeration
version: 7.2.1.27
An enumeration of the various transmit statistics. This is used as a key in the transmit stats dictionary. See GetTxStats() in IStatsAccessible

Namespace: SolaceSystems.Solclient.Messaging
Assembly: SolaceSystems.Solclient.Messaging (in SolaceSystems.Solclient.Messaging.dll) Version: 7.2.1.27 (7.2.1.27)
Syntax
public enum Stats_Tx
Public Enumeration Stats_Tx
public enum class Stats_Tx
Members
  Member nameValueDescription
TotalDataBytes0 The number of data bytes transmitted in total.
Bytes1 Obsolete. Deprecated; use TotalDataBytes instead.
TotalDataMsgs2 The number of data messages transmitted in total.
Msgs3 Obsolete. Deprecated; use TotalDataMsgs instead.
WouldBlock4 The number of messages not accepted due to would block (non-blocking only).
SocketFull5 The number of times the socket was full when send done (data buffered).
DirectBytes6 The number of bytes transmitted in Direct messages.
DirectMsgs7 The number of Direct messages transmitted.
PersistentBytes8 The number of bytes transmitted in Persistent messages.
NonPeristentBytes9 The number of bytes transmitted in Non-Persistent messages.
PersistentMsgs10 The number of Persistent messages transmitted.
NonPersistentMsgs11 The number of Non-Persistent messages transmitted.
PersistentMsgsRedelivered12 The number of Persistent messages redelivered.
NonPeristentMsgsRedelivered13 The number of Non-Persistent messages redelivered.
PersistentBytesRedelivered14 The number of bytes redelivered in Persistent messages.
NonPersistentBytesRedelivered15 The number of bytes redelivered in Non-Persistent messages.
AcksReceived16 The number of acknowledgements received.
WindowClose17 The number of times the transmit window closed.
AckTimeout18 The number of times the acknowledgement timer expired.
ControlMsgs19 The number of control (non-data) messages transmitted.
ControlBytes20 The number of bytes transmitted in control (non-data) messages.
CompressedBytes21 The number of bytes transmitted after compression.
TotalConnectionAttempts22 The total number of TCP connections attempted by this session.
RequestMsgSent23 Request messages sent.
RequestTimeout24 The request messages sent that did not receive a reply due to a timeout.
CacheRequestSent25 Cache Requests sent.
GuaranteedMsgsSentConfirmed26 Guaranteed messages (persistent/non-persistent) published that have been acknowledged.
DiscardNoMatch27 When the IPC add-on is in use, it represents the count of messages discarded due to no subscription match with connected peers
DiscardChannelError28 Messages discarded due to channel failure.
BlockedOnSend29 Number of times session blocked on socket full (blocking only).
See Also