org.mule.transport.tcp.protocols |
|
Java Source File Name | Type | Comment |
AbstractByteProtocol.java | Class | This Abstract class has been introduced so as to have the byte protocols (i.e. |
DirectProtocol.java | Class | The DirectProtocol class is an application level tcp protocol that does nothing.
The socket is read until no more bytes are (momentarily) available
(previously the transfer buffer also had to be full on the previous read, which made
stronger requirements on the underlying network). |
EOFProtocol.java | Class | The EOFProtocol class is an application level tcp protocol that does nothing. |
LengthProtocol.java | Class | The LengthProtocol is an application level tcp protocol that can be used to
transfer large amounts of data without risking some data to be loss. |
MuleMessageDirectProtocol.java | Class | This Protocol will send the actual Mule Message over the TCP channel, and in this
way we are preserving any headers which might be needed, for example Correlation
IDs in order to be able to aggregate messages after chunking. |
MuleMessageEOFProtocol.java | Class | This Protocol will send the actual Mule Message over the TCP channel, and in this
way we are preserving any headers which might be needed, for example Correlation
IDs in order to be able to aggregate messages after chunking. |
MuleMessageLengthProtocol.java | Class | This Protocol will send the actual Mule Message over the TCP channel, and in this
way we are preserving any headers which might be needed, for example Correlation
IDs in order to be able to aggregate messages after chunking. |
MuleMessageSafeProtocol.java | Class | This Protocol will send the actual Mule Message over the TCP channel, and in this
way we are preserving any headers which might be needed, for example Correlation
IDs in order to be able to aggregate messages after chunking. |
MuleMessageWorker.java | Class | Helper class for Mule message handling so that we can apply the same logic across all
sub-protocols (default, EOF and length). |
ProtocolStream.java | Class | |
SafeProtocol.java | Class | This precedes every message with a cookie. |
StreamingProtocol.java | Class | |
XmlMessageEOFProtocol.java | Class | Extend
org.mule.transport.tcp.protocols.XmlMessageProtocol to continue reading
until either a new message or EOF is found. |
XmlMessageProtocol.java | Class |
The XmlMessageProtocol is an application level tcp protocol that can be used to
read streaming xml documents. |