camel route:
from("file://" + REST_FILES + "?idempotent=true")
.from("file://" + FTP_FILES + "?idempotent=true")
.process(new Processor() {
@Override
public void process(Exchange exchange) {
}
Is it possible to understand inside process
method - was exchange obtained from REST_FILES or from FTP_FILES ?