getAllClients method

Map<String, SocketClient> getAllClients()

Retrieves a map of all clients with their IDs as keys.

Returns a map where the keys are client IDs and the values are SocketClient instances.

Implementation

Map<String, SocketClient> getAllClients() {
  return _clients;
}