Uses of Interface
rocks.xmpp.core.session.debug.XmppDebugger
-
Packages that use XmppDebugger Package Description rocks.xmpp.core.session Provides classes related to an XMPP session.rocks.xmpp.core.session.debug Provides classes for debugging an XMPP session. -
-
Uses of XmppDebugger in rocks.xmpp.core.session
Methods in rocks.xmpp.core.session that return XmppDebugger Modifier and Type Method Description XmppDebugger
XmppSession. getDebugger()
Gets the debugger or null if no debugger class was specified in the configuration.Methods in rocks.xmpp.core.session that return types with arguments of type XmppDebugger Modifier and Type Method Description Class<? extends XmppDebugger>
XmppSessionConfiguration. getDebugger()
Gets the current debugger for this session.Method parameters in rocks.xmpp.core.session with type arguments of type XmppDebugger Modifier and Type Method Description XmppSessionConfiguration.Builder
XmppSessionConfiguration.Builder. debugger(Class<? extends XmppDebugger> xmppDebugger)
Sets the debugger. -
Uses of XmppDebugger in rocks.xmpp.core.session.debug
Classes in rocks.xmpp.core.session.debug that implement XmppDebugger Modifier and Type Class Description class
ConsoleDebugger
A simple debugger implementation, which usesSystem.out
to print XMPP traffic.
-