I was hoping the community could help me understand the exact meaning of
'Exchange ending' as mentioned in Camel Docs about
DefaultErrorHandler<http://camel.apache.org/defaulterrorhandler.html>
.
For example, my route is as below -
from("ftp://x.x.x.x.?consumer.delay=30000").
.unmarshall().csv()
.to("endpoint1")
.to("endpoint2")
.to("endpoint3")
.end();
The above route polls a FTP location for files every 30 seconds. If at a
certain instant , one of the stages of the route throws exception, will
polling continue further. ?
If not, could some one advise the best strategy to continue polling. ?
Thanks,
Anand