10.24.0

MessageLevelStatistic Enumeration

The statistics associated with message memory management at the message level.

Definition

Namespace: SolaceSystems.Solclient.Messaging
Assembly: SolaceSystems.Solclient.Messaging (in SolaceSystems.Solclient.Messaging.dll) Version: 10.24.0
C#
public enum MessageLevelStatistic

Members

CurrentTotalMemoryInBytes0 The approximate amount of total memory consumed for a message pool (allocated and on free list).
CurrentTotalMemoryInUse1 the approximate amount of allocated memory (in-use; not on free list).
NumOfMessageAllocationPerformed2 The number of message allocations performed as a consequence of CreateMessage().
NumOfMessageFreePerformed3 Number of message frees performed as a consequence of implicit garbage collection or Dispose.
NumOfMessageDupPerformed4 Number of message duplications performed.
NumOfMessageReallocationPerformed5 Number of message re-allocations performed (results in growth in a message buffer).
CurrentNumOfMessagesOnFreeFlist6 The current number of messages on message free list.
Obsolete.
CurrentNumOfMessagesOnFreeList6 The current number of messages on message free list.
CurrentNumOfMessagesAllocated7 The current number of currently allocated messages.
CurrentNumOfMessagesCurrentlyAllocated7 The current number of currently allocated messages.
Obsolete.
CurrentNumOfContainersOnFreeList8 The current number of containers (for example, streams or maps) on container free list.
CurrentNumOfContainersAllocated9 The number of currently allocated containers (for example, streams or maps).

See Also