Registry / messaging / camel-timer

camel-timer

JSON →
library4.19.0javamavenunverified

Camel Timer component for generating periodic messages in routes.

<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-timer</artifactId> <version>4.19.0</version> </dependency>
INSTALL
IMPORT
SIG · CAMEL-TIMER
C
camel-timer
messagingjavav4.19.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

TimerComponent
org.apache.camel.component.timer.TimerComponent

Minimal Camel timer route example

import org.apache.camel.CamelContext; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.impl.DefaultCamelContext; public class Quickstart { public static void main(String[] args) throws Exception { CamelContext context = new DefaultCamelContext(); context.addRoutes(new RouteBuilder() { @Override public void configure() { from("timer:foo?period=5000") .to("log:example"); } }); context.start(); Thread.sleep(10000); context.stop(); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
4.19.0latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
15 hits · last 30 days
node
12
Amazon
1
OpenAI (training)
1
Resources
camel-timer — mvn dependency:get camel-timer · libregistry