Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name

Since

Default

Description

size

  

The maximum capacity of the seda queue, i.e., the number of messages it can hold.

The default value in Camel 2.2 or older is 1000.

From Camel 2.3: the size is unbounded by default.

 

Warning

Note: Care should be taken when using this option. The size is determined by the value specified when the first endpoint is created. Each endpoint must therefore specify the same size.

From Camel 2.11: a validation is taken place to ensure if using mixed queue sizes for the same queue name, Camel would detect this and fail creating the endpoint.

concurrentConsumers

 

1

Number of concurrent threads processing exchanges.

waitForTaskToComplete

 

IfReplyExpected

Option to specify whether the caller should wait for the asynchronous task to complete before continuing.

The following three options are supported:

  • Always

  • Never

  • IfReplyExpected

The first two values are self-explanatory.

The last value, IfReplyExpected, will only wait if the message is Request Reply based.

See Async messaging for more details.

timeout

 

30000

Timeout (in milliseconds) before a seda producer will stop waiting for an asynchronous task to complete.

See waitForTaskToComplete and Async for more details.

From Camel 2.2: you can now disable timeout by using 0 or a negative value.

multipleConsumers

2.2

false

Specifies whether multiple consumers are allowed. If enabled, you can use SEDA for Publish-Subscribe messaging. That is, you can send a message to the seda queue and have each consumer receive a copy of the message. When enabled, this option should be specified on every consumer endpoint.

limitConcurrentConsumers

2.3

true

Whether to limit the number of concurrentConsumers to the maximum of 500.

By default, an exception will be thrown if a seda endpoint is configured with a greater number. You can disable that check by turning this option off.

blockWhenFull

2.9

false

Whether a thread that sends messages to a full seda queue will block until the queue's capacity is no longer exhausted. By default, an exception will be thrown stating that the queue is full. By enabling this option, the calling thread will instead block and wait until the message can be accepted.

queueSize

2.9

 

Component only: the maximum size (capacity of the number of messages it can hold) of the seda queue.

Info
This option is used when size is not specified.

pollTimeout

2.9.3

1000

Consumer only: the timeout used when polling. When a timeout occurs, the consumer can check whether it is allowed to continue running. Setting a lower value allows the consumer to react more quickly upon shutdown.

purgeWhenStopping

2.11.1

false

Whether to purge the task queue when stopping the consumer/route. This allows to stop faster, as any pending messages on the queue is discarded.

queue

2.12.0

null

Define the queue instance which will be used by seda endpoint

queueFactory

2.12.0

null

Define the QueueFactory which could create the queue for the seda endpoint

failIfNoConsumers

2.12.0

false

Whether the producer should fail by throwing an exception when sending to a seda queue with no active consumers.

Info
Only one of the options discardIfNoConsumers and failIfNoConsumers can be enabled at the same time.

discardIfNoConsumers

2.16

false

Whether the producer should discard the message (do not add the message to the queue) when sending to a seda queue with no active consumers. 

Info
Only one of the options discardIfNoConsumers and failIfNoConsumers can be enabled at the same time.

...