Interface ChannelCallback<T>
-
- Type Parameters:
T
- the type the callback returns.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ChannelCallback<T>
Basic callback for use in RabbitTemplate.- Author:
- Mark Fisher, Gary Russell
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
doInRabbit(com.rabbitmq.client.Channel channel)
Execute any number of operations against the supplied RabbitMQChannel
, possibly returning a result.
-