use of com.hazelcast.client.impl.ClientEndpointImpl in project hazelcast by hazelcast.
the class GetConnectedClientsOperation method run.
@Override
public void run() throws Exception {
ClientEngineImpl service = getService();
this.clients = new HashMap<String, ClientType>();
for (Client clientEndpoint : service.getClients()) {
ClientEndpointImpl clientEndpointImpl = (ClientEndpointImpl) clientEndpoint;
this.clients.put(clientEndpointImpl.getUuid(), clientEndpointImpl.getClientType());
}
}
Aggregations