pekko/akka-docs/java/code/docs/camel/Consumer3.java
RayRoestenburg ee4a8afee9 Changed akka camel URI pattern to akka ActorPath pattern, like akka://system/user/someactor
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
2012-07-20 20:49:16 +02:00

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