Uses of Interface
rocks.xmpp.core.net.ReaderInterceptor
-
Packages that use ReaderInterceptor Package Description rocks.xmpp.core.net Provides base classes and interfaces for network and connection related logic.rocks.xmpp.core.session Provides classes related to an XMPP session.rocks.xmpp.core.session.debug Provides classes for debugging an XMPP session.rocks.xmpp.nio.codec Provides classes for en- and decoding XMPP objects to and from a stream of byte buffers.rocks.xmpp.nio.netty.net Provides connection-related classes based on Netty channels.rocks.xmpp.util Utility classes. -
-
Uses of ReaderInterceptor in rocks.xmpp.core.net
Constructor parameters in rocks.xmpp.core.net with type arguments of type ReaderInterceptor Constructor Description ReaderInterceptorChain(Iterable<ReaderInterceptor> readerInterceptors, Session session, Connection connection)
-
Uses of ReaderInterceptor in rocks.xmpp.core.session
Methods in rocks.xmpp.core.session that return types with arguments of type ReaderInterceptor Modifier and Type Method Description List<ReaderInterceptor>
XmppSession. getReaderInterceptors()
-
Uses of ReaderInterceptor in rocks.xmpp.core.session.debug
Subinterfaces of ReaderInterceptor in rocks.xmpp.core.session.debug Modifier and Type Interface Description interface
XmppDebugger
A debugger interface, which allows to implement custom debugger implementation to log XMPP traffic.Classes in rocks.xmpp.core.session.debug that implement ReaderInterceptor Modifier and Type Class Description class
ConsoleDebugger
A simple debugger implementation, which usesSystem.out
to print XMPP traffic. -
Uses of ReaderInterceptor in rocks.xmpp.nio.codec
Classes in rocks.xmpp.nio.codec that implement ReaderInterceptor Modifier and Type Class Description class
XmppStreamDecoder
Decodes a stream of byte buffers to XMPP elements. -
Uses of ReaderInterceptor in rocks.xmpp.nio.netty.net
Constructor parameters in rocks.xmpp.nio.netty.net with type arguments of type ReaderInterceptor Constructor Description NettyChannelConnection(io.netty.channel.Channel channel, StreamHandler streamHandler, Session session, List<ReaderInterceptor> readerInterceptors, Function<Locale,javax.xml.bind.Unmarshaller> unmarshallerSupplier, List<WriterInterceptor> writerInterceptors, Supplier<javax.xml.bind.Marshaller> marshallerSupplier, Consumer<Throwable> onException, ConnectionConfiguration connectionConfiguration)
-
Uses of ReaderInterceptor in rocks.xmpp.util
Classes in rocks.xmpp.util that implement ReaderInterceptor Modifier and Type Class Description class
XmppStreamDecoder
Decodes an XMPP stream from a synchronous source (reader).
-