Home | History | Annotate | Download | only in sip

Lines Matching refs:Listener

104      * Listener for events relating to a SIP session, such as when a session is being registered
106 * <p>Many of these events are also received by {@link SipAudioCall.Listener}.</p>
108 public static class Listener {
223 private Listener mListener;
236 SipSession(ISipSession realSession, Listener listener) {
238 setListener(listener);
329 * Sets the listener to listen to the session events. A {@code SipSession}
330 * can only hold one listener at a time. Subsequent calls to this method
331 * override the previous listener.
333 * @param listener to listen to the session events of this object
335 public void setListener(Listener listener) {
336 mListener = listener;
342 * profile. The session listener is called back upon success or failure of
347 * @see Listener
360 * expiration duration. The session listener is called back upon success or
364 * @see Listener
375 * Initiates a call to the specified profile. The session listener is called
384 * @see Listener