Java org.springframework.messaging.support ChannelInterceptor fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.messaging.support ChannelInterceptor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.messaging.support ChannelInterceptor.

The text is from its open source code.

Implementation

org.springframework.messaging.support.ChannelInterceptor has the following implementations.
Click this link to see all its implementation.

Method

MessagepostReceive(Message message, MessageChannel channel)
Invoked immediately after a Message has been retrieved but before it is returned to the caller.
voidpostSend(Message message, MessageChannel channel, boolean sent)
Invoked immediately after the send invocation.
booleanpreReceive(MessageChannel channel)
Invoked as soon as receive is called and before a Message is actually retrieved.
MessagepreSend(Message message, MessageChannel channel)
Invoked before the Message is actually sent to the channel.