use of com.hazelcast.client.impl.ClientEndpointStatisticsManagerImpl in project hazelcast by hazelcast.
the class TestUtil method getNode.
public static Node getNode(HazelcastInstance instance) {
Node node = Accessors.getNode(instance);
((ClientEngineImpl) node.getClientEngine()).setEndpointStatisticsManager(new ClientEndpointStatisticsManagerImpl());
return node;
}
Aggregations