Solclient
Stats_Tx Enumeration |
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
Members
Member name | Value | Description | |
---|---|---|---|
TotalDataBytes | 0 | The number of data bytes transmitted in total. | |
Bytes | 1 | Obsolete. Deprecated; use TotalDataBytes instead. | |
TotalDataMsgs | 2 | The number of data messages transmitted in total. | |
Msgs | 3 | Obsolete. Deprecated; use TotalDataMsgs instead. | |
WouldBlock | 4 | The number of messages not accepted due to would block (non-blocking only). | |
SocketFull | 5 | The number of times the socket was full when send done (data buffered). | |
DirectBytes | 6 | The number of bytes transmitted in Direct messages. | |
DirectMsgs | 7 | The number of Direct messages transmitted. | |
PersistentBytes | 8 | The number of bytes transmitted in Persistent messages. | |
NonPeristentBytes | 9 | The number of bytes transmitted in Non-Persistent messages. | |
PersistentMsgs | 10 | The number of Persistent messages transmitted. | |
NonPersistentMsgs | 11 | The number of Non-Persistent messages transmitted. | |
PersistentMsgsRedelivered | 12 | The number of Persistent messages redelivered. | |
NonPeristentMsgsRedelivered | 13 | The number of Non-Persistent messages redelivered. | |
PersistentBytesRedelivered | 14 | The number of bytes redelivered in Persistent messages. | |
NonPersistentBytesRedelivered | 15 | The number of bytes redelivered in Non-Persistent messages. | |
AcksReceived | 16 | The number of acknowledgements received. | |
WindowClose | 17 | The number of times the transmit window closed. | |
AckTimeout | 18 | The number of times the acknowledgement timer expired. | |
ControlMsgs | 19 | The number of control (non-data) messages transmitted. | |
ControlBytes | 20 | The number of bytes transmitted in control (non-data) messages. | |
CompressedBytes | 21 | The number of bytes transmitted after compression. | |
TotalConnectionAttempts | 22 | The total number of TCP connections attempted by this session. | |
RequestMsgSent | 23 | Request messages sent. | |
RequestTimeout | 24 | The request messages sent that did not receive a reply due to a timeout. | |
CacheRequestSent | 25 | Cache Requests sent. | |
GuaranteedMsgsSentConfirmed | 26 | Guaranteed messages (persistent/non-persistent) published that have been acknowledged. | |
DiscardNoMatch | 27 | When the IPC add-on is in use, it represents the count of messages discarded due to no subscription match with connected peers | |
DiscardChannelError | 28 | Messages discarded due to channel failure. | |
BlockedOnSend | 29 | Number of times session blocked on socket full (blocking only). |
See Also