Uses of Class
rocks.xmpp.core.stanza.IQEvent
-
Packages that use IQEvent Package Description rocks.xmpp.core.session Provides classes related to an XMPP session.rocks.xmpp.core.stanza Provides classes for XML stanza management (message, presence, IQ).rocks.xmpp.extensions.ping Provides classes for XEP-0199: XMPP Ping. -
-
Uses of IQEvent in rocks.xmpp.core.session
Method parameters in rocks.xmpp.core.session with type arguments of type IQEvent Modifier and Type Method Description void
XmppSession. addInboundIQListener(Consumer<IQEvent> iqListener)
Adds an inbound IQ listener to the session, which will get notified, whenever an IQ stanza is received.void
XmppSession. addOutboundIQListener(Consumer<IQEvent> iqListener)
Adds an outbound IQ listener to the session, which will get notified, whenever an IQ stanza is sent.void
XmppSession. removeInboundIQListener(Consumer<IQEvent> iqListener)
Removes a previously added inbound IQ listener from the session.void
XmppSession. removeOutboundIQListener(Consumer<IQEvent> iqListener)
Removes a previously added outbound IQ listener from the session. -
Uses of IQEvent in rocks.xmpp.core.stanza
Methods in rocks.xmpp.core.stanza with parameters of type IQEvent Modifier and Type Method Description void
InboundIQHandler. handleInboundIQ(IQEvent e)
Handles an inbound IQ.void
OutboundIQHandler. handleOutboundIQ(IQEvent e)
Handles an outbound IQ. -
Uses of IQEvent in rocks.xmpp.extensions.ping
Methods in rocks.xmpp.extensions.ping with parameters of type IQEvent Modifier and Type Method Description void
PingManager. handleInboundIQ(IQEvent e)
-