Changed unlimited blocking to block up untill the replyTimeout, and added a test for it, where manual Ack is never received ticket #1926 removed unnecesary methods
27 lines
No EOL
707 B
Java
27 lines
No EOL
707 B
Java
package docs.camel;
|
|
//#CustomRoute
|
|
import akka.actor.UntypedActor;
|
|
import akka.camel.CamelMessage;
|
|
import akka.dispatch.Mapper;
|
|
import akka.japi.Function;
|
|
|
|
public class Responder extends UntypedActor{
|
|
|
|
public void onReceive(Object message) {
|
|
if (message instanceof CamelMessage) {
|
|
CamelMessage camelMessage = (CamelMessage) message;
|
|
getSender().tell(createResponse(camelMessage), getSelf());
|
|
} else
|
|
unhandled(message);
|
|
}
|
|
|
|
private CamelMessage createResponse(CamelMessage msg) {
|
|
return msg.mapBody(new Mapper<String,String>() {
|
|
@Override
|
|
public String apply(String body) {
|
|
return String.format("received %s", body);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
//#CustomRoute |