Interface CronEndpointBuilderFactory.CronBuilders
-
- All Known Subinterfaces:
EndpointBuilderFactory
- All Known Implementing Classes:
EndpointRouteBuilder,EndpointRouteConfigurationBuilder
- Enclosing interface:
- CronEndpointBuilderFactory
public static interface CronEndpointBuilderFactory.CronBuilders
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default CronEndpointBuilderFactory.CronEndpointBuildercron(String path)Cron (camel-cron) A generic interface for triggering events at times specified through the Unix cron syntax.default CronEndpointBuilderFactory.CronEndpointBuildercron(String componentName, String path)Cron (camel-cron) A generic interface for triggering events at times specified through the Unix cron syntax.
-
-
-
Method Detail
-
cron
default CronEndpointBuilderFactory.CronEndpointBuilder cron(String path)
Cron (camel-cron) A generic interface for triggering events at times specified through the Unix cron syntax. Category: scheduling Since: 3.1 Maven coordinates: org.apache.camel:camel-cron Syntax:cron:namePath parameter: name (required) The name of the cron trigger- Parameters:
path- name- Returns:
- the dsl builder
-
cron
default CronEndpointBuilderFactory.CronEndpointBuilder cron(String componentName, String path)
Cron (camel-cron) A generic interface for triggering events at times specified through the Unix cron syntax. Category: scheduling Since: 3.1 Maven coordinates: org.apache.camel:camel-cron Syntax:cron:namePath parameter: name (required) The name of the cron trigger- Parameters:
componentName- to use a custom component name for the endpoint instead of the default namepath- name- Returns:
- the dsl builder
-
-