MessageLevelStatistic Enumeration

Solclient

MessageLevelStatistic Enumeration
version: 7.2.1.27
The statistics associated with message memory management at the message level.

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 MessageLevelStatistic
Public Enumeration MessageLevelStatistic
public enum class MessageLevelStatistic
Members
  Member nameValueDescription
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 Obsolete. The current number of messages on message free list.
CurrentNumOfMessagesOnFreeList6 The current number of messages on message free list.
CurrentNumOfMessagesAllocated7 The current number of currently allocated messages.
CurrentNumOfMessagesCurrentlyAllocated7 Obsolete. The current number of currently allocated messages.
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).
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).
See Also