Home | History | Annotate | Download | only in network

Lines Matching refs:listener

94      *  Adds a listener that will be notified about connection
97 public void addClientStateListener( ClientStateListener listener );
100 * Removes a previously registered connection listener.
102 public void removeClientStateListener( ClientStateListener listener );
105 * Adds a listener that will be notified when any message or object
108 public void addMessageListener( MessageListener<? super Client> listener );
111 * Adds a listener that will be notified when messages of the specified
114 public void addMessageListener( MessageListener<? super Client> listener, Class... classes );
117 * Removes a previously registered wildcard listener. This does
118 * not remove this listener from any type-specific registrations.
120 public void removeMessageListener( MessageListener<? super Client> listener );
123 * Removes a previously registered type-specific listener from
126 public void removeMessageListener( MessageListener<? super Client> listener, Class... classes );
129 * Adds a listener that will be notified when any connection errors
135 public void addErrorListener( ErrorListener<? super Client> listener );
138 * Removes a previously registered error listener.
140 public void removeErrorListener( ErrorListener<? super Client> listener );