| Package | Description |
|---|---|
| org.apache.camel.component.seda | |
| org.apache.camel.component.stub |
The Stub Component which is used for stubbing endpoints.
|
| org.apache.camel.component.vm |
The VM Component for asynchronous
SEDA exchanges on a
BlockingQueue
within the current JVM; so across CamelContext instances.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ArrayBlockingQueueFactory<E>
Implementation of
BlockingQueueFactory producing ArrayBlockingQueue |
class |
LinkedBlockingQueueFactory<E>
Implementation of
BlockingQueueFactory producing LinkedBlockingQueue |
class |
PriorityBlockingQueueFactory<E>
Implementation of
BlockingQueueFactory producing PriorityBlockingQueue |
| Modifier and Type | Method and Description |
|---|---|
BlockingQueueFactory<Exchange> |
SedaComponent.getDefaultQueueFactory() |
| Modifier and Type | Method and Description |
|---|---|
protected SedaEndpoint |
SedaComponent.createEndpoint(String endpointUri,
Component component,
BlockingQueueFactory<Exchange> queueFactory,
int concurrentConsumers) |
QueueReference |
SedaComponent.getOrCreateQueue(SedaEndpoint endpoint,
Integer size,
Boolean multipleConsumers,
BlockingQueueFactory<Exchange> customQueueFactory) |
void |
SedaComponent.setDefaultQueueFactory(BlockingQueueFactory<Exchange> defaultQueueFactory)
Sets the default queue factory.
|
| Constructor and Description |
|---|
SedaEndpoint(String endpointUri,
Component component,
BlockingQueueFactory<Exchange> queueFactory,
int concurrentConsumers) |
| Modifier and Type | Method and Description |
|---|---|
protected StubEndpoint |
StubComponent.createEndpoint(String endpointUri,
Component component,
BlockingQueueFactory<Exchange> queueFactory,
int concurrentConsumers) |
| Constructor and Description |
|---|
StubEndpoint(String endpointUri,
Component component,
BlockingQueueFactory<Exchange> queueFactory,
int concurrentConsumers) |
| Modifier and Type | Method and Description |
|---|---|
protected VmEndpoint |
VmComponent.createEndpoint(String endpointUri,
Component component,
BlockingQueueFactory<Exchange> queueFactory,
int concurrentConsumers) |
| Constructor and Description |
|---|
VmEndpoint(String endpointUri,
Component component,
BlockingQueueFactory<Exchange> queueFactory,
int concurrentConsumers) |
Apache Camel