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 voidXmppSession. addInboundIQListener(Consumer<IQEvent> iqListener)Adds an inbound IQ listener to the session, which will get notified, whenever an IQ stanza is received.voidXmppSession. addOutboundIQListener(Consumer<IQEvent> iqListener)Adds an outbound IQ listener to the session, which will get notified, whenever an IQ stanza is sent.voidXmppSession. removeInboundIQListener(Consumer<IQEvent> iqListener)Removes a previously added inbound IQ listener from the session.voidXmppSession. 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 voidInboundIQHandler. handleInboundIQ(IQEvent e)Handles an inbound IQ.voidOutboundIQHandler. 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 voidPingManager. handleInboundIQ(IQEvent e)
-