fixed some fixmes regarding using the reference.conf config Added some more java tests for custom routes with producers and consumers changed autoack to autoAck
31 lines
698 B
Java
31 lines
698 B
Java
package docs.camel;
|
|
//#Consumer3
|
|
import akka.actor.Status;
|
|
import akka.camel.Ack;
|
|
import akka.camel.CamelMessage;
|
|
import akka.camel.javaapi.UntypedConsumerActor;
|
|
|
|
public class Consumer3 extends UntypedConsumerActor{
|
|
|
|
@Override
|
|
public boolean autoAck() {
|
|
return false;
|
|
}
|
|
|
|
public String getEndpointUri() {
|
|
return "jms:queue:test";
|
|
}
|
|
|
|
public void onReceive(Object message) {
|
|
if (message instanceof CamelMessage) {
|
|
getSender().tell(Ack.getInstance());
|
|
// on success
|
|
// ..
|
|
Exception someException = new Exception("e1");
|
|
// on failure
|
|
getSender().tell(new Status.Failure(someException));
|
|
} else
|
|
unhandled(message);
|
|
}
|
|
}
|
|
//#Consumer3
|