public class DefaultProducerTemplate extends ServiceSupport implements ProducerTemplate
Message instances in an
Exchange to an Endpoint.shutdown, shuttingdown, started, starting, stopped, stopping, suspended, suspending| Constructor and Description |
|---|
DefaultProducerTemplate(CamelContext camelContext) |
DefaultProducerTemplate(CamelContext camelContext,
Endpoint defaultEndpoint) |
DefaultProducerTemplate(CamelContext camelContext,
ExecutorService executor) |
| Modifier and Type | Method and Description |
|---|---|
Future<Exchange> |
asyncCallback(Endpoint endpoint,
Exchange exchange,
Synchronization onCompletion)
Sends an asynchronous exchange to the given endpoint.
|
Future<Exchange> |
asyncCallback(Endpoint endpoint,
Processor processor,
Synchronization onCompletion)
Sends an asynchronous exchange to the given endpoint using a supplied processor.
|
Future<Exchange> |
asyncCallback(String uri,
Exchange exchange,
Synchronization onCompletion)
Sends an asynchronous exchange to the given endpoint.
|
Future<Exchange> |
asyncCallback(String uri,
Processor processor,
Synchronization onCompletion)
Sends an asynchronous exchange to the given endpoint using a supplied processor.
|
Future<Object> |
asyncCallbackRequestBody(Endpoint endpoint,
Object body,
Synchronization onCompletion)
Sends an asynchronous body to the given endpoint.
|
Future<Object> |
asyncCallbackRequestBody(String uri,
Object body,
Synchronization onCompletion)
Sends an asynchronous body to the given endpoint.
|
Future<Object> |
asyncCallbackSendBody(Endpoint endpoint,
Object body,
Synchronization onCompletion)
Sends an asynchronous body to the given endpoint.
|
Future<Object> |
asyncCallbackSendBody(String uri,
Object body,
Synchronization onCompletion)
Sends an asynchronous body to the given endpoint.
|
Future<Object> |
asyncRequestBody(Endpoint endpoint,
Object body)
Sends an asynchronous body to the given endpoint.
|
<T> Future<T> |
asyncRequestBody(Endpoint endpoint,
Object body,
Class<T> type)
Sends an asynchronous body to the given endpoint.
|
Future<Object> |
asyncRequestBody(String uri,
Object body)
Sends an asynchronous body to the given endpoint.
|
<T> Future<T> |
asyncRequestBody(String uri,
Object body,
Class<T> type)
Sends an asynchronous body to the given endpoint.
|
Future<Object> |
asyncRequestBodyAndHeader(Endpoint endpoint,
Object body,
String header,
Object headerValue)
Sends an asynchronous body to the given endpoint.
|
<T> Future<T> |
asyncRequestBodyAndHeader(Endpoint endpoint,
Object body,
String header,
Object headerValue,
Class<T> type)
Sends an asynchronous body to the given endpoint.
|
Future<Object> |
asyncRequestBodyAndHeader(String endpointUri,
Object body,
String header,
Object headerValue)
Sends an asynchronous body to the given endpoint.
|
<T> Future<T> |
asyncRequestBodyAndHeader(String endpointUri,
Object body,
String header,
Object headerValue,
Class<T> type)
Sends an asynchronous body to the given endpoint.
|
Future<Object> |
asyncRequestBodyAndHeaders(Endpoint endpoint,
Object body,
Map<String,Object> headers)
Sends an asynchronous body to the given endpoint.
|
<T> Future<T> |
asyncRequestBodyAndHeaders(Endpoint endpoint,
Object body,
Map<String,Object> headers,
Class<T> type)
Sends an asynchronous body to the given endpoint.
|
Future<Object> |
asyncRequestBodyAndHeaders(String endpointUri,
Object body,
Map<String,Object> headers)
Sends an asynchronous body to the given endpoint.
|
<T> Future<T> |
asyncRequestBodyAndHeaders(String endpointUri,
Object body,
Map<String,Object> headers,
Class<T> type)
Sends an asynchronous body to the given endpoint.
|
Future<Exchange> |
asyncSend(Endpoint endpoint,
Exchange exchange)
Sends an asynchronous exchange to the given endpoint.
|
Future<Exchange> |
asyncSend(Endpoint endpoint,
Processor processor)
Sends an asynchronous exchange to the given endpoint.
|
Future<Exchange> |
asyncSend(String uri,
Exchange exchange)
Sends an asynchronous exchange to the given endpoint.
|
Future<Exchange> |
asyncSend(String uri,
Processor processor)
Sends an asynchronous exchange to the given endpoint.
|
Future<Object> |
asyncSendBody(Endpoint endpoint,
Object body)
Sends an asynchronous body to the given endpoint.
|
Future<Object> |
asyncSendBody(String uri,
Object body)
Sends an asynchronous body to the given endpoint.
|
protected Processor |
createBodyAndHeaderProcessor(Object body,
String header,
Object headerValue) |
protected Processor |
createBodyAndPropertyProcessor(Object body,
String property,
Object propertyValue) |
protected Processor |
createSetBodyProcessor(Object body) |
protected void |
doStart()
Implementations override this method to support customized start/stop.
|
protected void |
doStop()
Implementations override this method to support customized start/stop.
|
<T> T |
extractFutureBody(Future<Object> future,
Class<T> type)
Gets the response body from the future handle, will wait until the response is ready.
|
<T> T |
extractFutureBody(Future<Object> future,
long timeout,
TimeUnit unit,
Class<T> type)
Gets the response body from the future handle, will wait at most the given time for the response to be ready.
|
protected Object |
extractResultBody(Exchange result) |
protected Object |
extractResultBody(Exchange result,
ExchangePattern pattern) |
CamelContext |
getCamelContext()
Get the
CamelContext |
CamelContext |
getContext()
Deprecated.
|
int |
getCurrentCacheSize()
Gets an approximated size of the current cached resources in the backing cache pools.
|
Endpoint |
getDefaultEndpoint()
Get the default endpoint to use if none is specified
|
protected Endpoint |
getMandatoryDefaultEndpoint() |
int |
getMaximumCacheSize()
Gets the maximum cache size used in the backing cache pools.
|
<T extends Endpoint> |
getResolvedEndpoint(String endpointUri,
Class<T> expectedClass)
Deprecated.
|
boolean |
isEventNotifierEnabled()
Whether the
EventNotifier should be
used by this ProducerTemplate to send events about the Exchange
being sent. |
static DefaultProducerTemplate |
newInstance(CamelContext camelContext,
String defaultEndpointUri) |
Exchange |
request(Endpoint endpoint,
Processor processor)
Sends an exchange to an endpoint using a supplied processor
Uses an
ExchangePattern.InOut message exchange pattern. |
Exchange |
request(String endpoint,
Processor processor)
Sends an exchange to an endpoint using a supplied processor
Uses an
ExchangePattern.InOut message exchange pattern. |
Object |
requestBody(Endpoint endpoint,
Object body)
Send the body to an endpoint returning any result output body.
|
<T> T |
requestBody(Endpoint endpoint,
Object body,
Class<T> type)
Send the body to an endpoint returning any result output body.
|
Object |
requestBody(Object body)
Sends the body to the default endpoint and returns the result content
Uses an
ExchangePattern.InOut message exchange pattern. |
<T> T |
requestBody(Object body,
Class<T> type)
Sends the body to the default endpoint and returns the result content
Uses an
ExchangePattern.InOut message exchange pattern. |
Object |
requestBody(String endpoint,
Object body)
Send the body to an endpoint returning any result output body.
|
<T> T |
requestBody(String endpointUri,
Object body,
Class<T> type)
Send the body to an endpoint returning any result output body.
|
Object |
requestBodyAndHeader(Endpoint endpoint,
Object body,
String header,
Object headerValue)
Send the body to an endpoint returning any result output body.
|
<T> T |
requestBodyAndHeader(Endpoint endpoint,
Object body,
String header,
Object headerValue,
Class<T> type)
Send the body to an endpoint returning any result output body.
|
Object |
requestBodyAndHeader(Object body,
String header,
Object headerValue)
Sends the body to the default endpoint and returns the result content
Uses an
ExchangePattern.InOut message exchange pattern. |
Object |
requestBodyAndHeader(String endpoint,
Object body,
String header,
Object headerValue)
Send the body to an endpoint returning any result output body.
|
<T> T |
requestBodyAndHeader(String endpointUri,
Object body,
String header,
Object headerValue,
Class<T> type)
Send the body to an endpoint returning any result output body.
|
Object |
requestBodyAndHeaders(Endpoint endpoint,
Object body,
Map<String,Object> headers)
Sends the body to an endpoint with the specified headers and header values.
|
<T> T |
requestBodyAndHeaders(Endpoint endpoint,
Object body,
Map<String,Object> headers,
Class<T> type)
Sends the body to an endpoint with the specified headers and header values.
|
Object |
requestBodyAndHeaders(Object body,
Map<String,Object> headers)
Sends the body to the default endpoint and returns the result content
Uses an
ExchangePattern.InOut message exchange pattern. |
Object |
requestBodyAndHeaders(String endpointUri,
Object body,
Map<String,Object> headers)
Sends the body to an endpoint with the specified headers and header values.
|
<T> T |
requestBodyAndHeaders(String endpointUri,
Object body,
Map<String,Object> headers,
Class<T> type)
Sends the body to an endpoint with the specified headers and header values.
|
protected Endpoint |
resolveMandatoryEndpoint(String endpointUri) |
Exchange |
send(Endpoint endpoint,
Exchange exchange)
Sends the exchange to the given endpoint
Notice: that if the processing of the exchange failed with an Exception it is not thrown from this method, but you can access it from the returned exchange using Exchange.getException(). |
Exchange |
send(Endpoint endpoint,
ExchangePattern pattern,
Processor processor)
Sends an exchange to an endpoint using a supplied processor
Notice: that if the processing of the exchange failed with an Exception it is not thrown from this method, but you can access it from the returned exchange using Exchange.getException(). |
Exchange |
send(Endpoint endpoint,
Processor processor)
Sends an exchange to an endpoint using a supplied processor
Notice: that if the processing of the exchange failed with an Exception it is not thrown from this method, but you can access it from the returned exchange using Exchange.getException(). |
Exchange |
send(Exchange exchange)
Sends the exchange to the default endpoint
Notice: that if the processing of the exchange failed with an Exception it is not thrown from this method, but you can access it from the returned exchange using Exchange.getException(). |
Exchange |
send(Processor processor)
Sends an exchange to the default endpoint using a supplied processor
Notice: that if the processing of the exchange failed with an Exception it is not thrown from this method, but you can access it from the returned exchange using Exchange.getException(). |
Exchange |
send(String endpointUri,
Exchange exchange)
Sends the exchange to the given endpoint
Notice: that if the processing of the exchange failed with an Exception it is not thrown from this method, but you can access it from the returned exchange using Exchange.getException(). |
Exchange |
send(String endpointUri,
ExchangePattern pattern,
Processor processor)
Sends an exchange to an endpoint using a supplied processor
Notice: that if the processing of the exchange failed with an Exception it is not thrown from this method, but you can access it from the returned exchange using Exchange.getException(). |
Exchange |
send(String endpointUri,
Processor processor)
Sends an exchange to an endpoint using a supplied processor
Notice: that if the processing of the exchange failed with an Exception it is not thrown from this method, but you can access it from the returned exchange using Exchange.getException(). |
Object |
sendBody(Endpoint endpoint,
ExchangePattern pattern,
Object body)
Send the body to an endpoint with the given
ExchangePattern
returning any result output body
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
sendBody(Endpoint endpoint,
Object body)
Send the body to an endpoint
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
sendBody(Object body)
Sends the body to the default endpoint
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
Object |
sendBody(String endpointUri,
ExchangePattern pattern,
Object body)
Send the body to an endpoint returning any result output body
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
sendBody(String endpointUri,
Object body)
Send the body to an endpoint
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
Object |
sendBodyAndHeader(Endpoint endpoint,
ExchangePattern pattern,
Object body,
String header,
Object headerValue)
Sends the body to an endpoint with a specified header and header value
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
sendBodyAndHeader(Endpoint endpoint,
Object body,
String header,
Object headerValue)
Sends the body to an endpoint with a specified header and header value
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
sendBodyAndHeader(Object body,
String header,
Object headerValue)
Sends the body to the default endpoint with a specified header and header value
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
Object |
sendBodyAndHeader(String endpoint,
ExchangePattern pattern,
Object body,
String header,
Object headerValue)
Sends the body to an endpoint with a specified header and header value
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
sendBodyAndHeader(String endpointUri,
Object body,
String header,
Object headerValue)
Sends the body to an endpoint with a specified header and header value
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
Object |
sendBodyAndHeaders(Endpoint endpoint,
ExchangePattern pattern,
Object body,
Map<String,Object> headers)
Sends the body to an endpoint with the specified headers and header values
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
sendBodyAndHeaders(Endpoint endpoint,
Object body,
Map<String,Object> headers)
Sends the body to an endpoint with the specified headers and header values
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
sendBodyAndHeaders(Object body,
Map<String,Object> headers)
Sends the body to the default endpoint with the specified headers and header values
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
Object |
sendBodyAndHeaders(String endpointUri,
ExchangePattern pattern,
Object body,
Map<String,Object> headers)
Sends the body to an endpoint with the specified headers and header values
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
sendBodyAndHeaders(String endpointUri,
Object body,
Map<String,Object> headers)
Sends the body to an endpoint with the specified headers and header values
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
Object |
sendBodyAndProperty(Endpoint endpoint,
ExchangePattern pattern,
Object body,
String property,
Object propertyValue)
Sends the body to an endpoint with a specified property and property value
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
sendBodyAndProperty(Endpoint endpoint,
Object body,
String property,
Object propertyValue)
Sends the body to an endpoint with a specified property and property value
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
sendBodyAndProperty(Object body,
String property,
Object propertyValue)
Sends the body to the default endpoint with a specified property and property value
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
Object |
sendBodyAndProperty(String endpoint,
ExchangePattern pattern,
Object body,
String property,
Object propertyValue)
Sends the body to an endpoint with a specified property and property value
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
sendBodyAndProperty(String endpointUri,
Object body,
String property,
Object propertyValue)
Sends the body to an endpoint with a specified property and property value
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
void |
setDefaultEndpoint(Endpoint defaultEndpoint)
Sets the default endpoint to use if none is specified
|
void |
setDefaultEndpointUri(String endpointUri)
Sets the default endpoint to use if none is specified
|
void |
setEventNotifierEnabled(boolean eventNotifierEnabled)
Sets whether the
EventNotifier should be
used by this ProducerTemplate to send events about the Exchange
being sent. |
void |
setExecutorService(ExecutorService executorService)
Sets a custom executor service to use for async messaging.
|
void |
setMaximumCacheSize(int maximumCacheSize)
Sets a custom maximum cache size to use in the backing cache pools.
|
doResume, doShutdown, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, resume, shutdown, start, stop, suspendpublic DefaultProducerTemplate(CamelContext camelContext)
public DefaultProducerTemplate(CamelContext camelContext, ExecutorService executor)
public DefaultProducerTemplate(CamelContext camelContext, Endpoint defaultEndpoint)
public static DefaultProducerTemplate newInstance(CamelContext camelContext, String defaultEndpointUri)
public int getMaximumCacheSize()
ProducerTemplategetMaximumCacheSize in interface ProducerTemplatepublic void setMaximumCacheSize(int maximumCacheSize)
ProducerTemplatesetMaximumCacheSize in interface ProducerTemplatemaximumCacheSize - the custom maximum cache sizepublic int getCurrentCacheSize()
ProducerTemplategetCurrentCacheSize in interface ProducerTemplatepublic boolean isEventNotifierEnabled()
ProducerTemplateEventNotifier should be
used by this ProducerTemplate to send events about the Exchange
being sent.isEventNotifierEnabled in interface ProducerTemplatepublic void setEventNotifierEnabled(boolean eventNotifierEnabled)
ProducerTemplateEventNotifier should be
used by this ProducerTemplate to send events about the Exchange
being sent.
By default this is enabled.setEventNotifierEnabled in interface ProducerTemplateeventNotifierEnabled - true to enable, false to disable.public Exchange send(String endpointUri, Exchange exchange)
ProducerTemplateExchange.getException().send in interface ProducerTemplateendpointUri - the endpoint URI to send the exchange toexchange - the exchange to sendpublic Exchange send(String endpointUri, Processor processor)
ProducerTemplateExchange.getException().send in interface ProducerTemplateendpointUri - the endpoint URI to send the exchange toprocessor - the transformer used to populate the new exchange
Processor to populate the exchangepublic Exchange send(String endpointUri, ExchangePattern pattern, Processor processor)
ProducerTemplateExchange.getException().send in interface ProducerTemplateendpointUri - the endpoint URI to send the exchange topattern - the message ExchangePattern such as
ExchangePattern.InOnly or ExchangePattern.InOutprocessor - the transformer used to populate the new exchange
Processor to populate the exchangepublic Exchange send(Endpoint endpoint, Exchange exchange)
ProducerTemplateExchange.getException().send in interface ProducerTemplateendpoint - the endpoint to send the exchange toexchange - the exchange to sendpublic Exchange send(Endpoint endpoint, Processor processor)
ProducerTemplateExchange.getException().send in interface ProducerTemplateendpoint - the endpoint to send the exchange toprocessor - the transformer used to populate the new exchange
Processor to populate the exchangepublic Exchange send(Endpoint endpoint, ExchangePattern pattern, Processor processor)
ProducerTemplateExchange.getException().send in interface ProducerTemplateendpoint - the endpoint to send the exchange topattern - the message ExchangePattern such as
ExchangePattern.InOnly or ExchangePattern.InOutprocessor - the transformer used to populate the new exchange
Processor to populate the exchangepublic Object sendBody(Endpoint endpoint, ExchangePattern pattern, Object body)
ProducerTemplateExchangePattern
returning any result output body
CamelExecutionException with
the caused exception wrapped.sendBody in interface ProducerTemplateendpoint - the endpoint to send the exchange topattern - the message ExchangePattern such as
ExchangePattern.InOnly or ExchangePattern.InOutbody - the payloadExchangePattern is OUT capable, otherwise nullpublic void sendBody(Endpoint endpoint, Object body) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBody in interface ProducerTemplateendpoint - the endpoint to send the exchange tobody - the payloadCamelExecutionException - if the processing of the exchange failedpublic void sendBody(String endpointUri, Object body) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBody in interface ProducerTemplateendpointUri - the endpoint URI to send the exchange tobody - the payloadCamelExecutionException - if the processing of the exchange failedpublic Object sendBody(String endpointUri, ExchangePattern pattern, Object body) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBody in interface ProducerTemplateendpointUri - the endpoint URI to send the exchange topattern - the message ExchangePattern such as
ExchangePattern.InOnly or ExchangePattern.InOutbody - the payloadExchangePattern is OUT capable, otherwise nullCamelExecutionException - if the processing of the exchange failedpublic void sendBodyAndHeader(String endpointUri, Object body, String header, Object headerValue) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndHeader in interface ProducerTemplateendpointUri - the endpoint URI to send tobody - the payload to sendheader - the header nameheaderValue - the header valueCamelExecutionException - if the processing of the exchange failedpublic void sendBodyAndHeader(Endpoint endpoint, Object body, String header, Object headerValue) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndHeader in interface ProducerTemplateendpoint - the Endpoint to send tobody - the payload to sendheader - the header nameheaderValue - the header valueCamelExecutionException - if the processing of the exchange failedpublic Object sendBodyAndHeader(Endpoint endpoint, ExchangePattern pattern, Object body, String header, Object headerValue) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndHeader in interface ProducerTemplateendpoint - the Endpoint to send topattern - the message ExchangePattern such as
ExchangePattern.InOnly or ExchangePattern.InOutbody - the payload to sendheader - the header nameheaderValue - the header valueExchangePattern is OUT capable, otherwise nullCamelExecutionException - if the processing of the exchange failedpublic Object sendBodyAndHeader(String endpoint, ExchangePattern pattern, Object body, String header, Object headerValue) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndHeader in interface ProducerTemplateendpoint - the Endpoint URI to send topattern - the message ExchangePattern such as
ExchangePattern.InOnly or ExchangePattern.InOutbody - the payload to sendheader - the header nameheaderValue - the header valueExchangePattern is OUT capable, otherwise nullCamelExecutionException - if the processing of the exchange failedpublic void sendBodyAndProperty(String endpointUri, Object body, String property, Object propertyValue) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndProperty in interface ProducerTemplateendpointUri - the endpoint URI to send tobody - the payload to sendproperty - the property namepropertyValue - the property valueCamelExecutionException - if the processing of the exchange failedpublic void sendBodyAndProperty(Endpoint endpoint, Object body, String property, Object propertyValue) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndProperty in interface ProducerTemplateendpoint - the Endpoint to send tobody - the payload to sendproperty - the property namepropertyValue - the property valueCamelExecutionException - if the processing of the exchange failedpublic Object sendBodyAndProperty(Endpoint endpoint, ExchangePattern pattern, Object body, String property, Object propertyValue) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndProperty in interface ProducerTemplateendpoint - the Endpoint to send topattern - the message ExchangePattern such as
ExchangePattern.InOnly or ExchangePattern.InOutbody - the payload to sendproperty - the property namepropertyValue - the property valueExchangePattern is OUT capable, otherwise nullCamelExecutionException - if the processing of the exchange failedpublic Object sendBodyAndProperty(String endpoint, ExchangePattern pattern, Object body, String property, Object propertyValue) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndProperty in interface ProducerTemplateendpoint - the Endpoint URI to send topattern - the message ExchangePattern such as
ExchangePattern.InOnly or ExchangePattern.InOutbody - the payload to sendproperty - the property namepropertyValue - the property valueExchangePattern is OUT capable, otherwise nullCamelExecutionException - if the processing of the exchange failedpublic void sendBodyAndHeaders(String endpointUri, Object body, Map<String,Object> headers) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndHeaders in interface ProducerTemplateendpointUri - the endpoint URI to send tobody - the payload to sendheaders - headersCamelExecutionException - if the processing of the exchange failedpublic void sendBodyAndHeaders(Endpoint endpoint, Object body, Map<String,Object> headers) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndHeaders in interface ProducerTemplateendpoint - the endpoint URI to send tobody - the payload to sendheaders - headersCamelExecutionException - if the processing of the exchange failedpublic Object sendBodyAndHeaders(String endpointUri, ExchangePattern pattern, Object body, Map<String,Object> headers) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndHeaders in interface ProducerTemplateendpointUri - the endpoint URI to send topattern - the message ExchangePattern such as
ExchangePattern.InOnly or ExchangePattern.InOutbody - the payload to sendheaders - headersExchangePattern is OUT capable, otherwise nullCamelExecutionException - if the processing of the exchange failedpublic Object sendBodyAndHeaders(Endpoint endpoint, ExchangePattern pattern, Object body, Map<String,Object> headers) throws CamelExecutionException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndHeaders in interface ProducerTemplateendpoint - the endpoint URI to send topattern - the message ExchangePattern such as
ExchangePattern.InOnly or ExchangePattern.InOutbody - the payload to sendheaders - headersExchangePattern is OUT capable, otherwise nullCamelExecutionException - if the processing of the exchange failedpublic Exchange request(Endpoint endpoint, Processor processor)
ProducerTemplateExchangePattern.InOut message exchange pattern.
Exchange.getException().request in interface ProducerTemplateendpoint - the Endpoint to send toprocessor - the processor which will populate the exchange before sendingpublic Object requestBody(Object body) throws CamelExecutionException
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBody in interface ProducerTemplatebody - the payload to sendCamelExecutionException - if the processing of the exchange failedpublic Object requestBody(Endpoint endpoint, Object body) throws CamelExecutionException
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBody in interface ProducerTemplateendpoint - the Endpoint to send tobody - the payloadCamelExecutionException - if the processing of the exchange failedpublic Object requestBodyAndHeader(Object body, String header, Object headerValue) throws CamelExecutionException
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBodyAndHeader in interface ProducerTemplatebody - the payloadheader - the header nameheaderValue - the header valueCamelExecutionException - if the processing of the exchange failedpublic Object requestBodyAndHeader(Endpoint endpoint, Object body, String header, Object headerValue) throws CamelExecutionException
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBodyAndHeader in interface ProducerTemplateendpoint - the Endpoint to send tobody - the payloadheader - the header nameheaderValue - the header valueCamelExecutionException - if the processing of the exchange failedpublic Exchange request(String endpoint, Processor processor) throws CamelExecutionException
ProducerTemplateExchangePattern.InOut message exchange pattern.
Exchange.getException().request in interface ProducerTemplateendpoint - the endpoint URI to send toprocessor - the processor which will populate the exchange before sendingCamelExecutionExceptionpublic Object requestBody(String endpoint, Object body) throws CamelExecutionException
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBody in interface ProducerTemplateendpoint - the endpoint URI to send tobody - the payloadCamelExecutionException - if the processing of the exchange failedpublic Object requestBodyAndHeader(String endpoint, Object body, String header, Object headerValue) throws CamelExecutionException
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBodyAndHeader in interface ProducerTemplateendpoint - the endpoint URI to send tobody - the payloadheader - the header nameheaderValue - the header valueCamelExecutionException - if the processing of the exchange failedpublic Object requestBodyAndHeaders(String endpointUri, Object body, Map<String,Object> headers)
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBodyAndHeaders in interface ProducerTemplateendpointUri - the endpoint URI to send tobody - the payload to sendheaders - headerspublic Object requestBodyAndHeaders(Endpoint endpoint, Object body, Map<String,Object> headers)
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBodyAndHeaders in interface ProducerTemplateendpoint - the endpoint URI to send tobody - the payload to sendheaders - headerspublic Object requestBodyAndHeaders(Object body, Map<String,Object> headers)
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBodyAndHeaders in interface ProducerTemplatebody - the payload to sendheaders - headerspublic <T> T requestBody(Object body, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBody in interface ProducerTemplatebody - the payload to sendtype - the expected response typepublic <T> T requestBody(Endpoint endpoint, Object body, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBody in interface ProducerTemplateendpoint - the Endpoint to send tobody - the payloadtype - the expected response typepublic <T> T requestBody(String endpointUri, Object body, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBody in interface ProducerTemplateendpointUri - the endpoint URI to send tobody - the payloadtype - the expected response typepublic <T> T requestBodyAndHeader(Endpoint endpoint, Object body, String header, Object headerValue, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBodyAndHeader in interface ProducerTemplateendpoint - the Endpoint to send tobody - the payloadheader - the header nameheaderValue - the header valuetype - the expected response typepublic <T> T requestBodyAndHeader(String endpointUri, Object body, String header, Object headerValue, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBodyAndHeader in interface ProducerTemplateendpointUri - the endpoint URI to send tobody - the payloadheader - the header nameheaderValue - the header valuetype - the expected response typepublic <T> T requestBodyAndHeaders(String endpointUri, Object body, Map<String,Object> headers, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBodyAndHeaders in interface ProducerTemplateendpointUri - the endpoint URI to send tobody - the payload to sendheaders - headerstype - the expected response typepublic <T> T requestBodyAndHeaders(Endpoint endpoint, Object body, Map<String,Object> headers, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.
CamelExecutionException with
the caused exception wrapped.requestBodyAndHeaders in interface ProducerTemplateendpoint - the endpoint URI to send tobody - the payload to sendheaders - headerstype - the expected response typepublic void sendBody(Object body)
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBody in interface ProducerTemplatebody - the payload to sendpublic Exchange send(Exchange exchange)
ProducerTemplateExchange.getException().send in interface ProducerTemplateexchange - the exchange to sendpublic Exchange send(Processor processor)
ProducerTemplateExchange.getException().send in interface ProducerTemplateprocessor - the transformer used to populate the new exchange
Processor to populate the exchangepublic void sendBodyAndHeader(Object body, String header, Object headerValue)
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndHeader in interface ProducerTemplatebody - the payload to sendheader - the header nameheaderValue - the header valuepublic void sendBodyAndProperty(Object body, String property, Object propertyValue)
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndProperty in interface ProducerTemplatebody - the payload to sendproperty - the property namepropertyValue - the property valuepublic void sendBodyAndHeaders(Object body, Map<String,Object> headers)
ProducerTemplateCamelExecutionException with
the caused exception wrapped.sendBodyAndHeaders in interface ProducerTemplatebody - the payload to sendheaders - the headers@Deprecated public CamelContext getContext()
getCamelContext()public CamelContext getCamelContext()
ProducerTemplateCamelContextgetCamelContext in interface ProducerTemplatepublic Endpoint getDefaultEndpoint()
ProducerTemplategetDefaultEndpoint in interface ProducerTemplatepublic void setDefaultEndpoint(Endpoint defaultEndpoint)
ProducerTemplatesetDefaultEndpoint in interface ProducerTemplatedefaultEndpoint - the default endpoint instancepublic void setDefaultEndpointUri(String endpointUri)
setDefaultEndpointUri in interface ProducerTemplateendpointUri - the default endpoint uri@Deprecated public <T extends Endpoint> T getResolvedEndpoint(String endpointUri, Class<T> expectedClass)
CamelContext.getEndpoint(String, Class)protected Processor createBodyAndHeaderProcessor(Object body, String header, Object headerValue)
protected Processor createBodyAndPropertyProcessor(Object body, String property, Object propertyValue)
protected Endpoint getMandatoryDefaultEndpoint()
protected Object extractResultBody(Exchange result, ExchangePattern pattern)
public void setExecutorService(ExecutorService executorService)
ProducerTemplatesetExecutorService in interface ProducerTemplateexecutorService - the executor service.public Future<Exchange> asyncSend(String uri, Exchange exchange)
ProducerTemplateasyncSend in interface ProducerTemplateuri - the endpoint URI to send the exchange toexchange - the exchange to sendpublic Future<Exchange> asyncSend(String uri, Processor processor)
ProducerTemplateasyncSend in interface ProducerTemplateuri - the endpoint URI to send the exchange toprocessor - the transformer used to populate the new exchangepublic Future<Object> asyncSendBody(String uri, Object body)
ProducerTemplateExchangePattern.InOnly message exchange pattern.asyncSendBody in interface ProducerTemplateuri - the endpoint URI to send the exchange tobody - the body to sendpublic Future<Object> asyncRequestBody(String uri, Object body)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncRequestBody in interface ProducerTemplateuri - the endpoint URI to send the exchange tobody - the body to sendpublic <T> Future<T> asyncRequestBody(String uri, Object body, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncRequestBody in interface ProducerTemplateuri - the endpoint URI to send the exchange tobody - the body to sendtype - the expected response typepublic Future<Object> asyncRequestBodyAndHeader(String endpointUri, Object body, String header, Object headerValue)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncRequestBodyAndHeader in interface ProducerTemplateendpointUri - the endpoint URI to send the exchange tobody - the body to sendheader - the header nameheaderValue - the header valuepublic <T> Future<T> asyncRequestBodyAndHeader(String endpointUri, Object body, String header, Object headerValue, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncRequestBodyAndHeader in interface ProducerTemplateendpointUri - the endpoint URI to send the exchange tobody - the body to sendheader - the header nameheaderValue - the header valuetype - the expected response typepublic Future<Object> asyncRequestBodyAndHeaders(String endpointUri, Object body, Map<String,Object> headers)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncRequestBodyAndHeaders in interface ProducerTemplateendpointUri - the endpoint URI to send the exchange tobody - the body to sendheaders - headerspublic <T> Future<T> asyncRequestBodyAndHeaders(String endpointUri, Object body, Map<String,Object> headers, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncRequestBodyAndHeaders in interface ProducerTemplateendpointUri - the endpoint URI to send the exchange tobody - the body to sendheaders - headerstype - the expected response typepublic <T> T extractFutureBody(Future<Object> future, Class<T> type)
ProducerTemplateCamelExecutionException with
the caused exception wrapped.extractFutureBody in interface ProducerTemplatefuture - the handle to get the responsetype - the expected response typepublic <T> T extractFutureBody(Future<Object> future, long timeout, TimeUnit unit, Class<T> type) throws TimeoutException
ProducerTemplateCamelExecutionException with
the caused exception wrapped.extractFutureBody in interface ProducerTemplatefuture - the handle to get the responsetimeout - the maximum time to waitunit - the time unit of the timeout argumenttype - the expected response typeTimeoutException - if the wait timed outpublic Future<Object> asyncCallbackSendBody(String uri, Object body, Synchronization onCompletion)
ProducerTemplateExchangePattern.InOnly message exchange pattern.asyncCallbackSendBody in interface ProducerTemplateuri - the endpoint URI to send the exchange tobody - the body to sendonCompletion - callback invoked when exchange has been completedpublic Future<Object> asyncCallbackSendBody(Endpoint endpoint, Object body, Synchronization onCompletion)
ProducerTemplateExchangePattern.InOnly message exchange pattern.asyncCallbackSendBody in interface ProducerTemplateendpoint - the endpoint to send the exchange tobody - the body to sendonCompletion - callback invoked when exchange has been completedpublic Future<Object> asyncCallbackRequestBody(String uri, Object body, Synchronization onCompletion)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncCallbackRequestBody in interface ProducerTemplateuri - the endpoint URI to send the exchange tobody - the body to sendonCompletion - callback invoked when exchange has been completedpublic Future<Object> asyncCallbackRequestBody(Endpoint endpoint, Object body, Synchronization onCompletion)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncCallbackRequestBody in interface ProducerTemplateendpoint - the endpoint to send the exchange tobody - the body to sendonCompletion - callback invoked when exchange has been completedpublic Future<Exchange> asyncCallback(String uri, Exchange exchange, Synchronization onCompletion)
ProducerTemplateasyncCallback in interface ProducerTemplateuri - the endpoint URI to send the exchange toexchange - the exchange to sendonCompletion - callback invoked when exchange has been completedpublic Future<Exchange> asyncCallback(String uri, Processor processor, Synchronization onCompletion)
ProducerTemplateasyncCallback in interface ProducerTemplateuri - the endpoint URI to send the exchange toprocessor - the transformer used to populate the new exchange
Processor to populate the exchangeonCompletion - callback invoked when exchange has been completedpublic Future<Object> asyncRequestBody(Endpoint endpoint, Object body)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncRequestBody in interface ProducerTemplateendpoint - the endpoint to send the exchange tobody - the body to sendpublic <T> Future<T> asyncRequestBody(Endpoint endpoint, Object body, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncRequestBody in interface ProducerTemplateendpoint - the endpoint to send the exchange tobody - the body to sendtype - the expected response typepublic Future<Object> asyncRequestBodyAndHeader(Endpoint endpoint, Object body, String header, Object headerValue)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncRequestBodyAndHeader in interface ProducerTemplateendpoint - the endpoint to send the exchange tobody - the body to sendheader - the header nameheaderValue - the header valuepublic <T> Future<T> asyncRequestBodyAndHeader(Endpoint endpoint, Object body, String header, Object headerValue, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncRequestBodyAndHeader in interface ProducerTemplateendpoint - the endpoint to send the exchange tobody - the body to sendheader - the header nameheaderValue - the header valuetype - the expected response typepublic Future<Object> asyncRequestBodyAndHeaders(Endpoint endpoint, Object body, Map<String,Object> headers)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncRequestBodyAndHeaders in interface ProducerTemplateendpoint - the endpoint to send the exchange tobody - the body to sendheaders - headerspublic <T> Future<T> asyncRequestBodyAndHeaders(Endpoint endpoint, Object body, Map<String,Object> headers, Class<T> type)
ProducerTemplateExchangePattern.InOut message exchange pattern.asyncRequestBodyAndHeaders in interface ProducerTemplateendpoint - the endpoint to send the exchange tobody - the body to sendheaders - headerstype - the expected response typepublic Future<Exchange> asyncSend(Endpoint endpoint, Exchange exchange)
ProducerTemplateasyncSend in interface ProducerTemplateendpoint - the endpoint to send the exchange toexchange - the exchange to sendpublic Future<Exchange> asyncSend(Endpoint endpoint, Processor processor)
ProducerTemplateasyncSend in interface ProducerTemplateendpoint - the endpoint to send the exchange toprocessor - the transformer used to populate the new exchangepublic Future<Object> asyncSendBody(Endpoint endpoint, Object body)
ProducerTemplateExchangePattern.InOnly message exchange pattern.asyncSendBody in interface ProducerTemplateendpoint - the endpoint to send the exchange tobody - the body to sendpublic Future<Exchange> asyncCallback(Endpoint endpoint, Exchange exchange, Synchronization onCompletion)
ProducerTemplateasyncCallback in interface ProducerTemplateendpoint - the endpoint to send the exchange toexchange - the exchange to sendonCompletion - callback invoked when exchange has been completedpublic Future<Exchange> asyncCallback(Endpoint endpoint, Processor processor, Synchronization onCompletion)
ProducerTemplateasyncCallback in interface ProducerTemplateendpoint - the endpoint to send the exchange toprocessor - the transformer used to populate the new exchange
Processor to populate the exchangeonCompletion - callback invoked when exchange has been completedprotected void doStart()
throws Exception
ServiceSupportServiceSupport.doStop() for more details.doStart in class ServiceSupportExceptionServiceSupport.doStop()protected void doStop()
throws Exception
ServiceSupportServiceSupport.doStop() method when
the service is being stopped. This method will also be invoked
if the service is still in uninitialized state (eg has not
been started). The method is always called to allow the service
to do custom logic when the service is being stopped, such as when
CamelContext is shutting down.doStop in class ServiceSupportExceptionServiceSupport.doStart()Apache Camel