getListeners method

List<ClientListener> getListeners()

Returns a list containing the ClientListener instances that were added to this client.

Returns a list containing the listeners that were added to this client.

Implementation

List<ClientListener> getListeners() {
  return _listeners.toList();
}