Administration : tibemsServerInfo

tibemsServerInfo
Type
Purpose
Represent a TIBCO Enterprise Message Service server.
Remarks
This type represents metrics for an EMS server.
 
tibemsServerInfo_Destroy
Function
Purpose
Destroy a tibemsServerInfo object.
C Declaration
tibems_status tibemsServerInfo_Destroy(
    tibemsServerInfo serverInfo);
COBOL Call
CALL "tibemsServerInfo_Destroy"
 USING BY VALUE serverInfo,
       RETURNING tibems-status
END-CALL.
Parameters
 
The tibemsServerInfo object to destroy.
 
tibemsServerInfo_GetConsumerCount
Function
Purpose
Get the total number of consumers.
C Declaration
tibems_status tibemsServerInfo_GetConsumerCount(
    tibemsServerInfo serverInfo,
    tibems_int* count);
COBOL Call
CALL "tibemsServerInfo_GetConsumerCount"
 USING BY VALUE serverInfo,
       BY REFERENCE count,
       RETURNING tibems-status
END-CALL.
Parameters
 
 
tibemsServerInfo_GetProducerCount
Function
Purpose
Get the total number of producers.
C Declaration
tibems_status tibemsServerInfo_GetProducerCount(
    tibemsServerInfo serverInfo,
    tibems_int* count);
COBOL Call
CALL "tibemsServerInfo_GetProducerCount"
 USING BY VALUE serverInfo,
       BY REFERENCE count,
       RETURNING tibems-status
END-CALL.
Parameters
 
 
tibemsServerInfo_GetQueueCount
Function
Purpose
Get the total number of queues in the server.
C Declaration
tibems_status tibemsServerInfo_GetQueueCount(
    tibemsServerInfo serverInfo,
    tibems_int* count);
COBOL Call
CALL "tibemsServerInfo_GetQueueCount"
 USING BY VALUE serverInfo,
       BY REFERENCE count,
       RETURNING tibems-status
END-CALL.
Parameters
 
 
tibemsServerInfo_GetTopicCount
Function
Purpose
Get the total number of topics in the server.
C Declaration
tibems_status tibemsServerInfo_GetTopicCount(
    tibemsServerInfo serverInfo,
    tibems_int* count);
COBOL Call
CALL "tibemsServerInfo_GetTopicCount"
 USING BY VALUE serverInfo,
       BY REFERENCE count,
       RETURNING tibems-status
END-CALL.
Parameters