Spring Integration

Package org.springframework.integration.ip.tcp.serializer

Byte array (de)serializers for putting some protocol on the wire so that incoming messages can be constructed from stream data.

See:
          Description

Class Summary
AbstractByteArraySerializer Base class for (de)serializers that provide a mechanism to reconstruct a byte array from an arbitrary stream.
ByteArrayCrLfSerializer Reads data in an InputStream to a byte[]; data must be terminated by \r\n (not included in resulting byte[]).
ByteArrayLengthHeaderSerializer Reads data in an InputStream to a byte[]; data must be preceded by a binary length (network byte order, not included in resulting byte[]).
ByteArrayRawSerializer A byte array (de)serializer that does nothing with the payload; sends it raw.
ByteArrayStxEtxSerializer Reads data in an InputStream to a byte[]; data must be prefixed by <stx> and terminated by <etx> (not included in resulting byte[]).
 

Exception Summary
SoftEndOfStreamException Used to communicate that a stream has closed, but between logical messages.
 

Package org.springframework.integration.ip.tcp.serializer Description

Byte array (de)serializers for putting some protocol on the wire so that incoming messages can be constructed from stream data.


Spring Integration