Interface TransportResolverListener.Resolver
-
- All Superinterfaces:
TransportResolverListener
- Enclosing interface:
- TransportResolverListener
public static interface TransportResolverListener.Resolver extends TransportResolverListener
Resolver listener.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jivesoftware.smackx.jingleold.nat.TransportResolverListener
TransportResolverListener.Checker, TransportResolverListener.Resolver
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcandidateAdded(TransportCandidate cand)A transport candidate has been added.voidend()All the transport candidates have been obtained.voidinit()The resolution process has been started.
-
-
-
Method Detail
-
init
void init()
The resolution process has been started.
-
candidateAdded
void candidateAdded(TransportCandidate cand) throws SmackException.NotConnectedException, InterruptedException
A transport candidate has been added.- Parameters:
cand- The transport candidate.- Throws:
SmackException.NotConnectedException- if the XMPP connection is not connected.InterruptedException- if the calling thread was interrupted.
-
end
void end()
All the transport candidates have been obtained.
-
-