Spring Integration

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

Packages that use InputStreamingConverter
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 InputStreamingConverter in org.springframework.commons.serializer.java
 

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

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

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

Methods in org.springframework.integration.ip.tcp.connection with parameters of type InputStreamingConverter
 void AbstractConnectionFactory.setInputConverter(InputStreamingConverter<?> converter)
           
 void AbstractTcpConnection.setInputConverter(InputStreamingConverter<?> inputConverter)
           
 void TcpConnection.setInputConverter(InputStreamingConverter<?> inputConverter)
           
 

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

Classes in org.springframework.integration.ip.tcp.converter that implement InputStreamingConverter
 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.