Generated by
JDiff

Interface org.springframework.messaging.support.ChannelInterceptor

Changed Methods
void afterReceiveCompletion(Message<?>, MessageChannel, Exception) Changed from abstract to non-abstract. Invoked after the completion of a receive regardless of any exception that have been raised thus allowing for proper resource cleanup.
void afterSendCompletion(Message<?>, MessageChannel, boolean, Exception) Changed from abstract to non-abstract. Invoked after the completion of a send regardless of any exception that have been raised thus allowing for proper resource cleanup.
Message<?> postReceive(Message<?>, MessageChannel) Changed from abstract to non-abstract. Invoked immediately after a Message has been retrieved but before it is returned to the caller.
void postSend(Message<?>, MessageChannel, boolean) Changed from abstract to non-abstract. Invoked immediately after the send invocation.
boolean preReceive(MessageChannel) Changed from abstract to non-abstract. Invoked as soon as receive is called and before a Message is actually retrieved.
Message<?> preSend(Message<?>, MessageChannel) Changed from abstract to non-abstract. Invoked before the Message is actually sent to the channel.