Nux 1.6

Uses of Interface
nux.xom.io.StreamingSerializer

Packages that use StreamingSerializer
nux.xom.binary Serializes (encodes) and deserializes (decodes) XOM XML documents to and from an efficient and compact custom binary XML data format, without loss or change of any information. 
nux.xom.io Using memory consumption close to zero, streaming serialization enables writing arbitrarily large XML documents onto a destination, such as an OutputStream, both for standard textual XML as well as binary XML; Also includes a XOM Builder implementation that uses a StAX parser instead of a SAX parser; plus a XMLStreamReader implementation reading from an underlying XOM Document or fragment; plus other tools. 
nux.xom.pool Efficient and flexible pools and factories for Documents, XQueries, and XSL Transforms, as well as Builders that validate against W3C XML Schemas, DTDs, RELAX NG, Schematron, etc. 
 

Uses of StreamingSerializer in nux.xom.binary
 

Methods in nux.xom.binary that return StreamingSerializer
 StreamingSerializer BinaryXMLCodec.createStreamingSerializer(OutputStream out, int zlibCompressionLevel)
          Constructs a new streaming serializer that serializes bnux binary XML to the given underlying output stream, using the given ZLIB compression level.
 

Uses of StreamingSerializer in nux.xom.io
 

Methods in nux.xom.io that return StreamingSerializer
 StreamingSerializer StreamingSerializerFactory.createBinaryXMLSerializer(OutputStream out, int zlibCompressionLevel)
          Returns a new streaming serializer that writes bnux binary XML to the given underlying output stream, using the given ZLIB compression level.
 StreamingSerializer StreamingSerializerFactory.createStaxSerializer(XMLStreamWriter writer)
          Returns a new streaming serializer that writes standard textual XML to the given underlying StAX XMLStreamWriter.
 StreamingSerializer StreamingSerializerFactory.createXMLSerializer(OutputStream out, String encoding)
          Returns a new streaming serializer that writes standard textual XML to the given underlying output stream, using the given character encoding for char to byte conversions.
 

Uses of StreamingSerializer in nux.xom.pool
 

Methods in nux.xom.pool with parameters of type StreamingSerializer
static NodeFactory XOMUtil.getRedirectingNodeFactory(StreamingSerializer serializer)
          Returns a node factory that redirects its input onto the output of a streaming serializer.
 


Nux 1.6