Hi,
I have trouble of understanding the meaning of "synchronous" parameter
on a from() in a route.
Does it mean the whole route will be execute with the syncronous API?
I ask because from the few tests I did, it seems that even though the
first call goes through calls to process() without AsyncCallback, then
the following ones in a route seems to be going through process() with
AsyncCallback!
I'm developing a component and I'm not sure what to write in the
documentation about the effect of synchronous on the consumer :)
For now I just call the processor with the non-async API:
https://github.com/petalslink/petals-se-camel/blob/master/camel-petals/src/main/java/org/ow2/petals/camel/component/PetalsCamelConsumer.java#L67
Thanks!
Victor