Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
2.9.0
-
Patch Available
-
Unknown
Description
It would be great to have timer component support asynchronous API.
Such a feature can be useful when timer component generates events which must be processed by multiple threads.
Current implementation of the timer component makes a blocking call so the usage of thread pools hardly possible to process multiple timer event simultaneously.
Sample
from("timer:start") .threads(1, 5) .to("bean:very-long-operation");