use of com.hazelcast.monitor.impl.NodeStateImpl in project hazelcast by hazelcast.
the class TimedMemberStateFactory method createNodeState.
private void createNodeState(MemberStateImpl memberState) {
Node node = instance.node;
ClusterService cluster = instance.node.clusterService;
NodeStateImpl nodeState = new NodeStateImpl(cluster.getClusterState(), node.getState(), cluster.getClusterVersion(), node.getVersion());
memberState.setNodeState(nodeState);
}
Aggregations