Package org.jxmpp.xml.splitter
Interface XmppElementCallback
-
- All Superinterfaces:
CompleteElementCallback
public interface XmppElementCallback extends CompleteElementCallback
Callback forXmlSplitter
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
streamClosed()
Invoked when a XMPP 'stream' close tag has been read.void
streamOpened(String prefix, Map<String,String> attributes)
Invoked if a new XMPP 'stream' open tag has been read.-
Methods inherited from interface org.jxmpp.xml.splitter.CompleteElementCallback
onCompleteElement
-
-
-
-
Method Detail
-
streamOpened
void streamOpened(String prefix, Map<String,String> attributes)
Invoked if a new XMPP 'stream' open tag has been read.- Parameters:
prefix
- the prefix of the 'stream' element.attributes
- the attributes of the 'stream' element.
-
streamClosed
void streamClosed()
Invoked when a XMPP 'stream' close tag has been read.
-
-