Spring Integration

Uses of Interface
org.springframework.commons.serializer.OutputStreamingConverter

Packages that use OutputStreamingConverter
org.springframework.commons.serializer.java Implementations of In/Out JavaStreamingConverter and Converter using standard Java Serialization. 
org.springframework.integration.ip.tcp.connection All things related to tcp connections - client and server factories; listener and sender interfaces. 
org.springframework.integration.ip.tcp.converter Byte array converters for putting some protocol on the wire so we can delimit incoming messages. 
 

Uses of OutputStreamingConverter in org.springframework.commons.serializer.java
 

Classes in org.springframework.commons.serializer.java that implement OutputStreamingConverter
 class JavaStreamingConverter
          Converter that implements both input and output streaming using Java Serialization.
 

Uses of OutputStreamingConverter in org.springframework.integration.ip.tcp.connection
 

Fields in org.springframework.integration.ip.tcp.connection declared as OutputStreamingConverter
protected  OutputStreamingConverter<?> AbstractConnectionFactory.outputConverter
           
protected  OutputStreamingConverter AbstractTcpConnection.outputConverter
           
 

Methods in org.springframework.integration.ip.tcp.connection with parameters of type OutputStreamingConverter
 void AbstractConnectionFactory.setOutputConverter(OutputStreamingConverter<?> outputConverter)
           
 void AbstractTcpConnection.setOutputConverter(OutputStreamingConverter<?> outputConverter)
           
 void TcpConnection.setOutputConverter(OutputStreamingConverter<?> outputConverter)
           
 

Uses of OutputStreamingConverter in org.springframework.integration.ip.tcp.converter
 

Classes in org.springframework.integration.ip.tcp.converter that implement OutputStreamingConverter
 class AbstractByteArrayStreamingConverter
          Base class for streaming converters that convert to/from a byte array.
 class ByteArrayCrLfConverter
          Converts data in an InputStream to a byte[]; data is terminated by \r\n (not included in resulting byte[]).
 class ByteArrayLengthHeaderConverter
          Converts data in an InputStream to a byte[]; data is preceded by a 4 byte binary length (network byte order, not included in resulting byte[]).
 class ByteArrayStxEtxConverter
          Converts data in an InputStream to a byte[]; data is prefixed by <stx> and terminated by <etx> (not included in resulting byte[]).
 


Spring Integration

Copyright © 2010. All Rights Reserved.