Uses of Interface
org.springframework.amqp.core.ReceiveAndReplyCallback
Packages that use ReceiveAndReplyCallback
Package
Description
Provides core classes for the spring AMQP abstraction.
Provides core classes for Spring Rabbit.
-
Uses of ReceiveAndReplyCallback in org.springframework.amqp.core
Subinterfaces of ReceiveAndReplyCallback in org.springframework.amqp.coreModifier and TypeInterfaceDescriptioninterfaceMessageexchanging contract ofReceiveAndReplyCallback.Methods in org.springframework.amqp.core with parameters of type ReceiveAndReplyCallbackModifier and TypeMethodDescription<R,S> boolean AmqpTemplate.receiveAndReply(String queueName, ReceiveAndReplyCallback<R, S> callback) Receive a message if there is one from provided queue, invoke providedReceiveAndReplyCallbackand send reply message, if thecallbackreturns one, to thereplyToAddressfromMessagePropertiesor to default exchange and default routingKey.<R,S> boolean AmqpTemplate.receiveAndReply(String queueName, ReceiveAndReplyCallback<R, S> callback, String replyExchange, String replyRoutingKey) Receive a message if there is one from provided queue, invoke providedReceiveAndReplyCallbackand send reply message, if thecallbackreturns one, to the providedexchangeandroutingKey.<R,S> boolean AmqpTemplate.receiveAndReply(String queueName, ReceiveAndReplyCallback<R, S> callback, ReplyToAddressCallback<S> replyToAddressCallback) Receive a message if there is one from provided queue, invoke providedReceiveAndReplyCallbackand send reply message, if thecallbackreturns one, to thereplyToAddressfrom result ofReplyToAddressCallback.<R,S> boolean AmqpTemplate.receiveAndReply(ReceiveAndReplyCallback<R, S> callback) Receive a message if there is one from a default queue, invoke providedReceiveAndReplyCallbackand send reply message, if thecallbackreturns one, to thereplyToAddressfromMessagePropertiesor to default exchange and default routingKey.<R,S> boolean AmqpTemplate.receiveAndReply(ReceiveAndReplyCallback<R, S> callback, String replyExchange, String replyRoutingKey) Receive a message if there is one from default queue, invoke providedReceiveAndReplyCallbackand send reply message, if thecallbackreturns one, to the providedexchangeandroutingKey.<R,S> boolean AmqpTemplate.receiveAndReply(ReceiveAndReplyCallback<R, S> callback, ReplyToAddressCallback<S> replyToAddressCallback) Receive a message if there is one from a default queue, invoke providedReceiveAndReplyCallbackand send reply message, if thecallbackreturns one, to thereplyToAddressfrom result ofReplyToAddressCallback. -
Uses of ReceiveAndReplyCallback in org.springframework.amqp.rabbit.core
Methods in org.springframework.amqp.rabbit.core with parameters of type ReceiveAndReplyCallbackModifier and TypeMethodDescription<R,S> boolean RabbitTemplate.receiveAndReply(String queueName, ReceiveAndReplyCallback<R, S> callback) <R,S> boolean RabbitTemplate.receiveAndReply(String queueName, ReceiveAndReplyCallback<R, S> callback, String replyExchange, String replyRoutingKey) <R,S> boolean RabbitTemplate.receiveAndReply(String queueName, ReceiveAndReplyCallback<R, S> callback, ReplyToAddressCallback<S> replyToAddressCallback) <R,S> boolean RabbitTemplate.receiveAndReply(ReceiveAndReplyCallback<R, S> callback) <R,S> boolean RabbitTemplate.receiveAndReply(ReceiveAndReplyCallback<R, S> callback, String exchange, String routingKey) <R,S> boolean RabbitTemplate.receiveAndReply(ReceiveAndReplyCallback<R, S> callback, ReplyToAddressCallback<S> replyToAddressCallback)