Interface SedaEndpointBuilderFactory.SedaBuilders
-
- All Known Subinterfaces:
EndpointBuilderFactory
- All Known Implementing Classes:
EndpointRouteBuilder,EndpointRouteConfigurationBuilder
- Enclosing interface:
- SedaEndpointBuilderFactory
public static interface SedaEndpointBuilderFactory.SedaBuilders
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default SedaEndpointBuilderFactory.SedaEndpointBuilderseda(String path)SEDA (camel-seda) Asynchronously call another endpoint from any Camel Context in the same JVM.default SedaEndpointBuilderFactory.SedaEndpointBuilderseda(String componentName, String path)SEDA (camel-seda) Asynchronously call another endpoint from any Camel Context in the same JVM.
-
-
-
Method Detail
-
seda
default SedaEndpointBuilderFactory.SedaEndpointBuilder seda(String path)
SEDA (camel-seda) Asynchronously call another endpoint from any Camel Context in the same JVM. Category: core,endpoint Since: 1.1 Maven coordinates: org.apache.camel:camel-seda Syntax:seda:namePath parameter: name (required) Name of queue- Parameters:
path- name- Returns:
- the dsl builder
-
seda
default SedaEndpointBuilderFactory.SedaEndpointBuilder seda(String componentName, String path)
SEDA (camel-seda) Asynchronously call another endpoint from any Camel Context in the same JVM. Category: core,endpoint Since: 1.1 Maven coordinates: org.apache.camel:camel-seda Syntax:seda:namePath parameter: name (required) Name of queue- Parameters:
componentName- to use a custom component name for the endpoint instead of the default namepath- name- Returns:
- the dsl builder
-
-