Class GzipInterceptor
java.lang.Object
org.apache.catalina.tribes.group.ChannelInterceptorBase
org.apache.catalina.tribes.group.interceptors.GzipInterceptor
- All Implemented Interfaces:
 ChannelInterceptor,Heartbeat,MembershipListener
- 
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.catalina.tribes.ChannelInterceptor
ChannelInterceptor.InterceptorEvent - 
Field Summary
FieldsFields inherited from class org.apache.catalina.tribes.group.ChannelInterceptorBase
optionFlag - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionstatic byte[]compress(byte[] data) static byte[]decompress(byte[] data) voidthemessageReceivedis invoked when a message is received.voidsendMessage(Member[] destination, ChannelMessage msg, InterceptorPayload payload) ThesendMessagemethod is called when a message is being sent to one more destinations.Methods inherited from class org.apache.catalina.tribes.group.ChannelInterceptorBase
fireInterceptorEvent, getChannel, getLocalMember, getMember, getMembers, getNext, getOptionFlag, getPrevious, hasMembers, heartbeat, memberAdded, memberDisappeared, okToProcess, setChannel, setNext, setOptionFlag, setPrevious, start, stop 
- 
Field Details
- 
sm
 - 
DEFAULT_BUFFER_SIZE
public static final int DEFAULT_BUFFER_SIZE- See Also:
 
 
 - 
 - 
Constructor Details
- 
GzipInterceptor
public GzipInterceptor() 
 - 
 - 
Method Details
- 
sendMessage
public void sendMessage(Member[] destination, ChannelMessage msg, InterceptorPayload payload) throws ChannelException Description copied from interface:ChannelInterceptorThesendMessagemethod is called when a message is being sent to one more destinations. The interceptor can modify any of the parameters and then pass on the message down the stack by invokinggetNext().sendMessage(destination,msg,payload)
Alternatively the interceptor can stop the message from being sent by not invokinggetNext().sendMessage(destination,msg,payload)
If the message is to be sent asynchronous the application can be notified of completion and errors by passing in an error handler attached to a payload object.
The ChannelMessage.getAddress contains Channel.getLocalMember, and can be overwritten to simulate a message sent from another node.- Specified by:
 sendMessagein interfaceChannelInterceptor- Overrides:
 sendMessagein classChannelInterceptorBase- Parameters:
 destination- Member[] - the destination for this messagemsg- ChannelMessage - the message to be sentpayload- InterceptorPayload - the payload, carrying an error handler and future useful data, can be null- Throws:
 ChannelException- if a serialization error happens.- See Also:
 
 - 
messageReceived
Description copied from interface:ChannelInterceptorthemessageReceivedis invoked when a message is received.ChannelMessage.getAddress()is the sender, or the reply-to address if it has been overwritten.- Specified by:
 messageReceivedin interfaceChannelInterceptor- Overrides:
 messageReceivedin classChannelInterceptorBase- Parameters:
 msg- ChannelMessage
 - 
compress
- Throws:
 IOException
 - 
decompress
- Parameters:
 data- Data to decompress- Returns:
 - Decompressed data
 - Throws:
 IOException- Compression error
 
 -