// CURENT LOST public void onAddClientLost(GMAClient client) { client.setTimeToDisconect(new Date().getTime()); this.clientsLostConnection.put(client.getClientName(), client); }
// CURENT TIME OUT public void onAddClientTimeOut(GMAClient client) { client.setTimeToTimeOut(new Date().getTime()); this.clientsTimeout.put(client.getClientName(), client); }
// CURENT ONLINE public void onAddClient(GMAClient client) { client.setTimeToBeginConnect(new Date().getTime()); this.clients.put(client.getClientName(), client); }