Home | History | Annotate | Download | only in sip

Lines Matching refs:Listener

198      * @param listener to listen to registration events; can be null
211 SipRegistrationListener listener) throws SipException {
218 createRelay(listener, localProfile.getUriString()));
225 * Sets the listener to listen to registration events. No effect if the
230 * @param listener to listen to registration events; can be null
234 SipRegistrationListener listener) throws SipException {
237 localProfileUri, createRelay(listener, localProfileUri));
298 * {@link SipAudioCall.Listener#onError onError(SipAudioCall, SipErrorCode.TIME_OUT, String)}
303 * @param listener to listen to the call events from {@link SipAudioCall};
309 * @see SipAudioCall.Listener#onError
312 SipProfile peerProfile, SipAudioCall.Listener listener, int timeout)
315 call.setListener(listener);
329 * {@link SipAudioCall.Listener#onError onError(SipAudioCall, SipErrorCode.TIME_OUT, String)}
334 * @param listener to listen to the call events from {@link SipAudioCall};
340 * @see SipAudioCall.Listener#onError
343 String peerProfileUri, SipAudioCall.Listener listener, int timeout)
348 new SipProfile.Builder(peerProfileUri).build(), listener,
357 * is returned, the listener will receive a
358 * {@link SipAudioCall.Listener#onRinging}
362 * @param listener to listen to the call events from {@link SipAudioCall};
368 SipAudioCall.Listener listener) throws SipException {
388 call.setListener(listener);
456 * @param listener to listen to the registration events
460 SipRegistrationListener listener) throws SipException {
463 createRelay(listener, localProfile.getUriString()));
477 * @param listener to listen to the registration events
481 SipRegistrationListener listener) throws SipException {
484 createRelay(listener, localProfile.getUriString()));
513 SipRegistrationListener listener, String uri) {
514 return ((listener == null) ? null : new ListenerRelay(listener, uri));
523 * @param listener to listen to SIP session events
526 SipSession.Listener listener) throws SipException {
529 return new SipSession(s, listener);
552 // listener must not be null
553 public ListenerRelay(SipRegistrationListener listener, String uri) {
554 mListener = listener;