|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.camel.model.OptionalIdentifiedDefinition
org.apache.camel.model.ProcessorDefinition<ExpressionNode>
org.apache.camel.model.ExpressionNode
org.apache.camel.model.NoOutputExpressionNode
org.apache.camel.model.RecipientListDefinition<Type>
public class RecipientListDefinition<Type extends ProcessorDefinition>
Represents an XML <recipientList/> element
| Field Summary |
|---|
| Fields inherited from class org.apache.camel.model.ProcessorDefinition |
|---|
errorHandlerBuilder, errorHandlerRef, inheritErrorHandler, log |
| Constructor Summary | |
|---|---|
RecipientListDefinition()
|
|
RecipientListDefinition(Expression expression)
|
|
RecipientListDefinition(ExpressionDefinition expression)
|
|
| Method Summary | |
|---|---|
RecipientListDefinition<Type> |
aggregationStrategy(AggregationStrategy aggregationStrategy)
Set the aggregationStrategy |
RecipientListDefinition<Type> |
aggregationStrategyRef(String aggregationStrategyRef)
Set the aggregationStrategy |
Processor |
createProcessor(RouteContext routeContext)
Override this in definition class and implement logic to create the processor based on the definition model. |
Type |
end()
Ends the current block |
RecipientListDefinition<Type> |
executorService(ExecutorService executorService)
Setting the executor service for executing |
RecipientListDefinition<Type> |
executorServiceRef(String executorServiceRef)
Setting the executor service for executing |
AggregationStrategy |
getAggregationStrategy()
|
String |
getDelimiter()
|
ExecutorService |
getExecutorService()
Gets the executor service |
String |
getExecutorServiceRef()
Gets the reference to lookup in the Registry for the executor service to be used. |
Boolean |
getIgnoreInvalidEndpoints()
|
Boolean |
getParallelProcessing()
|
String |
getShortName()
Returns a short name for this node which can be useful for ID generation or referring to related resources like images |
Boolean |
getStopOnException()
|
String |
getStrategyRef()
|
Boolean |
getStreaming()
|
Long |
getTimeout()
|
RecipientListDefinition<Type> |
ignoreInvalidEndpoints()
Ignore the invalidate endpoint exception when try to create a producer with that endpoint |
boolean |
isIgnoreInvalidEndpoints()
|
boolean |
isParallelProcessing()
|
boolean |
isStopOnException()
|
boolean |
isStreaming()
|
RecipientListDefinition<Type> |
parallelProcessing()
Doing the recipient list work in parallel |
void |
setAggregationStrategy(AggregationStrategy aggregationStrategy)
|
void |
setDelimiter(String delimiter)
|
void |
setExecutorService(ExecutorService executorService)
Sets the executor service to be used. |
void |
setExecutorServiceRef(String executorServiceRef)
Sets a reference to lookup in the Registry for the executor service to be used. |
void |
setIgnoreInvalidEndpoints(Boolean ignoreInvalidEndpoints)
|
void |
setParallelProcessing(Boolean parallelProcessing)
|
void |
setStopOnException(Boolean stopOnException)
|
void |
setStrategyRef(String strategyRef)
|
void |
setStreaming(Boolean streaming)
|
void |
setTimeout(Long timeout)
|
RecipientListDefinition<Type> |
stopOnException()
Will now stop further processing if an exception or failure occurred during processing of an Exchange and the caused exception will be thrown. |
RecipientListDefinition<Type> |
streaming()
Doing the recipient list work in streaming model |
RecipientListDefinition<Type> |
timeout(long timeout)
Sets a timeout value in millis to use when using parallelProcessing. |
String |
toString()
|
| Methods inherited from class org.apache.camel.model.NoOutputExpressionNode |
|---|
addOutput, getOutputs, isOutputSupported |
| Methods inherited from class org.apache.camel.model.ExpressionNode |
|---|
createFilterProcessor, getExpression, getLabel, setExpression, setOutputs |
| Methods inherited from class org.apache.camel.model.OptionalIdentifiedDefinition |
|---|
description, getDescription, getDescriptionText, getId, hasCustomIdAssigned, idOrCreate, setDescription, setId |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public RecipientListDefinition()
public RecipientListDefinition(ExpressionDefinition expression)
public RecipientListDefinition(Expression expression)
| Method Detail |
|---|
public String toString()
toString in class Objectpublic String getShortName()
OptionalIdentifiedDefinition
getShortName in class ExpressionNode
public Processor createProcessor(RouteContext routeContext)
throws Exception
ProcessorDefinition
createProcessor in class ProcessorDefinition<ExpressionNode>Exceptionpublic Type end()
ProcessorDefinition
end in class ProcessorDefinition<ExpressionNode>public RecipientListDefinition<Type> aggregationStrategy(AggregationStrategy aggregationStrategy)
aggregationStrategy - the strategy
public RecipientListDefinition<Type> aggregationStrategyRef(String aggregationStrategyRef)
aggregationStrategyRef - a reference to a strategy to lookup
public RecipientListDefinition<Type> ignoreInvalidEndpoints()
public RecipientListDefinition<Type> parallelProcessing()
public RecipientListDefinition<Type> streaming()
public RecipientListDefinition<Type> stopOnException()
Exchange and the caused exception will be thrown.
Will also stop if processing the exchange failed (has a fault message) or an exception
was thrown and handled by the error handler (such as using onException). In all situations
the recipient list will stop further processing. This is the same behavior as in pipeline, which
is used by the routing engine.
The default behavior is to not stop but continue processing till the end
public RecipientListDefinition<Type> executorService(ExecutorService executorService)
ExecutorServiceAwareDefinition
executorService in interface ExecutorServiceAwareDefinition<RecipientListDefinition>executorService - the executor service
public RecipientListDefinition<Type> executorServiceRef(String executorServiceRef)
ExecutorServiceAwareDefinition
executorServiceRef in interface ExecutorServiceAwareDefinition<RecipientListDefinition>executorServiceRef - reference for a ExecutorService
to lookup in the Registry
public RecipientListDefinition<Type> timeout(long timeout)
timeout - timeout in millis
public String getDelimiter()
public void setDelimiter(String delimiter)
public Boolean getParallelProcessing()
public void setParallelProcessing(Boolean parallelProcessing)
public boolean isParallelProcessing()
public String getStrategyRef()
public void setStrategyRef(String strategyRef)
public String getExecutorServiceRef()
ExecutorServiceAwareRegistry for the executor service to be used.
getExecutorServiceRef in interface ExecutorServiceAwarepublic void setExecutorServiceRef(String executorServiceRef)
ExecutorServiceAwareRegistry for the executor service to be used.
setExecutorServiceRef in interface ExecutorServiceAwareexecutorServiceRef - reference for the executorpublic Boolean getIgnoreInvalidEndpoints()
public void setIgnoreInvalidEndpoints(Boolean ignoreInvalidEndpoints)
public boolean isIgnoreInvalidEndpoints()
public Boolean getStopOnException()
public void setStopOnException(Boolean stopOnException)
public boolean isStopOnException()
public AggregationStrategy getAggregationStrategy()
public void setAggregationStrategy(AggregationStrategy aggregationStrategy)
public ExecutorService getExecutorService()
ExecutorServiceAware
getExecutorService in interface ExecutorServiceAwarepublic void setExecutorService(ExecutorService executorService)
ExecutorServiceAware
setExecutorService in interface ExecutorServiceAwareexecutorService - the executorpublic Boolean getStreaming()
public void setStreaming(Boolean streaming)
public boolean isStreaming()
public Long getTimeout()
public void setTimeout(Long timeout)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||