public static interface SagaEndpointBuilderFactory.SagaBuilders
| Modifier and Type | Method and Description |
|---|---|
default SagaEndpointBuilderFactory.SagaEndpointBuilder |
saga(String path)
Saga (camel-saga)
Execute custom actions within a route using the Saga EIP.
|
default SagaEndpointBuilderFactory.SagaEndpointBuilder |
saga(String componentName,
String path)
Saga (camel-saga)
Execute custom actions within a route using the Saga EIP.
|
default SagaEndpointBuilderFactory.SagaEndpointBuilder saga(String path)
saga:action
Path parameter: action (required)
Action to execute (complete or compensate)
There are 2 enums and the value can be one of: COMPLETE, COMPENSATEpath - actiondefault SagaEndpointBuilderFactory.SagaEndpointBuilder saga(String componentName, String path)
saga:action
Path parameter: action (required)
Action to execute (complete or compensate)
There are 2 enums and the value can be one of: COMPLETE, COMPENSATEcomponentName - to use a custom component name for the endpoint
instead of the default namepath - actionApache Camel