I'd like to know if it's possible to have a camel component in a route that could accept two different components. Something like:
from("abc-component:queue.name.a")
.doSomething
.to("def-component:queue.name.b")
and the abc-component will accept both a jms-component and a file-component
pollEnrich(). - Kayaman