Uses of Interface
com.tangosol.io.pof.PofHandler
-
Packages that use PofHandler Package Description com.tangosol.io.pof Contains classes related to POF serialization and deserialization.com.tangosol.util Contains various generic utilities. -
-
Uses of PofHandler in com.tangosol.io.pof
Classes in com.tangosol.io.pof that implement PofHandler Modifier and Type Class Description class
AbstractPofHandler
An abstract implementation of PofHandler that delegates to a PofHandler.class
DuplexingPofHandler
An implementation of PofHandler that passes each call onto two different PofHandler objects.class
LoggingPofHandler
An implementation of PofHandler that logs all of the stream contents for debugging / testing purposes.class
ValidatingPofHandler
An implementation of PofHandler that validates a POF stream.class
WritingPofHandler
An implementation of PofHandler that writes a POF stream to a WriteBuffer using a BufferOutput object.Constructors in com.tangosol.io.pof with parameters of type PofHandler Constructor Description AbstractPofHandler(PofHandler handler)
Construct a delegating PofHandler.DuplexingPofHandler(PofHandler handler1, PofHandler handler2)
Construct a duplexing PofHandler that will pass on method calls to two different PofHandler objects.PofParser(PofHandler handler)
Construct a POF parser that will push events to the specified handler. -
Uses of PofHandler in com.tangosol.util
Classes in com.tangosol.util that implement PofHandler Modifier and Type Class Description static class
NullImplementation.NullPofHandler
An implementation of PofHandler that does nothing.Methods in com.tangosol.util that return PofHandler Modifier and Type Method Description static PofHandler
NullImplementation. getPofHandler()
Factory method: Obtain a null implementation of a PofHandler.
-