You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by sunil-solace April 9, 2023
We have a custom Camel based Adapter being developed. It basically invokes the Producer and Consumer implementations we've defined using Receiver and Sender, but we also would like to invoke a custom Processor in our Adapter from the Integration Suite. Is this supported, if yes, then what's the way around it?
Following is the example of what is being done:
The following processor is implemented in the Custom Adapter:
public class MyCustomProcessor implements Processor {
@Override
public void process(Exchange exchange) throws Exception {
//...
}
}
Discussed in #74
Originally posted by sunil-solace April 9, 2023
We have a custom Camel based Adapter being developed. It basically invokes the Producer and Consumer implementations we've defined using Receiver and Sender, but we also would like to invoke a custom Processor in our Adapter from the Integration Suite. Is this supported, if yes, then what's the way around it?
Following is the example of what is being done:
The following processor is implemented in the Custom Adapter:
and this is how it would work in the Camel world:
The text was updated successfully, but these errors were encountered: