Package com.ibm.websphere.sip.resolver
Interface DomainResolverListener
- 
- All Superinterfaces:
- java.util.EventListener
 
 public interface DomainResolverListener extends java.util.EventListenerImplementations of this interface are notified when DomainResolver has completed its DNS query. To receive those events, application should call the asynchronous API DomainResolver.locate(javax.servlet.sip.SipURI, DomainResolverListener, javax.servlet.sip.SipSession)
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voiderror(SipURILookupErrorEvent event)Notification that query was unsuccessful.voidhandleResults(SipURILookupEvent event)Notification that query was successful and application can handle results.
 
- 
- 
- 
Method Detail- 
handleResultsvoid handleResults(SipURILookupEvent event) Notification that query was successful and application can handle results.- Parameters:
- event-
 
 - 
errorvoid error(SipURILookupErrorEvent event) Notification that query was unsuccessful.- Parameters:
- event-
 
 
- 
 
-