void |
ExtendedExchange.addOnCompletion(Synchronization onCompletion) |
Adds a Synchronization to be invoked as callback when
this exchange is completed.
|
CompletableFuture<Exchange> |
ProducerTemplate.asyncCallback(String endpointUri,
Exchange exchange,
Synchronization onCompletion) |
Sends an asynchronous exchange to the given endpoint.
|
CompletableFuture<Exchange> |
ProducerTemplate.asyncCallback(String endpointUri,
Processor processor,
Synchronization onCompletion) |
Sends an asynchronous exchange to the given endpoint using a supplied processor.
|
CompletableFuture<Exchange> |
ProducerTemplate.asyncCallback(Endpoint endpoint,
Exchange exchange,
Synchronization onCompletion) |
Sends an asynchronous exchange to the given endpoint.
|
CompletableFuture<Exchange> |
ProducerTemplate.asyncCallback(Endpoint endpoint,
Processor processor,
Synchronization onCompletion) |
Sends an asynchronous exchange to the given endpoint using a supplied processor.
|
CompletableFuture<Object> |
ProducerTemplate.asyncCallbackRequestBody(String endpointUri,
Object body,
Synchronization onCompletion) |
Sends an asynchronous body to the given endpoint.
|
CompletableFuture<Object> |
ProducerTemplate.asyncCallbackRequestBody(Endpoint endpoint,
Object body,
Synchronization onCompletion) |
Sends an asynchronous body to the given endpoint.
|
CompletableFuture<Object> |
ProducerTemplate.asyncCallbackSendBody(String endpointUri,
Object body,
Synchronization onCompletion) |
Sends an asynchronous body to the given endpoint.
|
CompletableFuture<Object> |
ProducerTemplate.asyncCallbackSendBody(Endpoint endpoint,
Object body,
Synchronization onCompletion) |
Sends an asynchronous body to the given endpoint.
|
boolean |
ExtendedExchange.containsOnCompletion(Synchronization onCompletion) |
Checks if the passed Synchronization instance is
already contained on this exchange.
|