0

I have an apache camel route i want to specify timeout for that route if that route does not get completed in that timeout need to raise timeout exception. eq:

<route id="id"> <from uri="xyz"/> //does some calculation call some other routes. </route>

Sachin Singh
  • 3
  • 1
  • 5

1 Answers1

0

You may use Camel async API to implement what you want. Take a look at similar question (and solution) here.

TacheDeChoco
  • 3,683
  • 1
  • 14
  • 17