[TIBCO.EMS .NET Admin client library 6.0 documentation]
Assembly: TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)
Get the statistical information for the queues that match the given pattern.
Namespace:
TIBCO.EMS.ADMINAssembly: TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)
Syntax
public QueueInfo[] GetQueuesStatistics( string pattern, int cursorPosition, int cursorSize ) |
Public Function GetQueuesStatistics ( _ pattern As String, _ cursorPosition As Integer, _ cursorSize As Integer _ ) As QueueInfo() |
public: array<QueueInfo^>^ GetQueuesStatistics( String^ pattern, int cursorPosition, int cursorSize ) |
Parameters
- pattern
- Type: System..::.String
The pattern that must be matched
- cursorPosition
- Type: System..::.Int32
The cursorPosition can be Admin.DEST_CURSOR_FIRST, Admin.DEST_CURSOR_NEXT, Admin.DEST_CURSOR_LAST
- cursorSize
- Type: System..::.Int32
The cursorSize must be greater than zero. Note that the operation may return less than the requested size.
Return Value
array of QueueInfo objects with statistical data or null if no queues found or statistics are disabled or when cursor complete.
Remarks
The wildcards "*" and ">" may be included in the pattern. See the TIBCO EMS
documentation for how wildcards work in queue names. A pattern of "",
">", or null will return statistics for all the queues.
One can start, continue or complete a cursored scan of queues.
Exceptions
Exception | Condition |
---|---|
TIBCO.EMS.ADMIN..::.AdminException | if not authorized or an error occurred. |