ClusterInfo provides information about the eXtremeDB Cluster interface.
public static class ClusterInfo
{
public int rTransCommit;
public int rTransRollback;
public long bytesSent;
public long bytesRecv;
public int nActiveNodes;
public int nodeId;
ClusterInfo(int rTransCommit, int rTransRollback, long bytesSent,
long bytesRecv, int nActiveNodes, int nodeId)
{
this.rTransCommit = rTransCommit;
this.rTransRollback = rTransRollback;
this.bytesSent = bytesSent;
this.bytesRecv = bytesRecv;
this.nActiveNodes = nActiveNodes;
this.nodeId = nodeId;
}
};
rTransCommit
|
The number of successful remote transactions |
rTransRollback
|
The number of aborted remote transactions |
bytesSent
|
The total amount of sent data, in bytes |
bytesRecv
|
The total amount of received data, in bytes |
nActiveNodes
|
The number of currently active Cluster nodes |
nodeId
|
This node ID |