下面的代码中有一个错误(尝试使用Akka递归)。算法停止,并且在JVM中永久执行进程(Java应用程序),除非我从系统监视器中删除它。我认为修复它应该是一个非常简单的黑客。
Here is an example关于如何使用Akka进行并行Pi近似。下面是尝试展示Akka如何使用递归Actors。因此,master创建了2个worker,向它们发送相同的消息以减少一些int
值。他们并行执行此操作并检查整数值是否不等于0.如果是,则将结果整数值(0)返回给主服务器,或者它们再次创建2个工作程序并向它们发送最近递减的值。如果这棵树的深度大于1(整数是> 1的值)然后工人将他们的结果发送给调用它们的工人,并且只传递给主人。嗯,这很简单如下(Decrement,NewIntValue和FinalIntValue基本相同,它们有不同的名称,以使其更容易理解):
import akka.actor.ActorRef;
import akka.actor.ActorSystem;
import akka.actor.Props;
import akka.actor.UntypedActor;
import akka.actor.UntypedActorFactory;
import akka.routing.RoundRobinRouter;
public class StackOverFlow {
public static void main(String[] args) {
StackOverFlow rid = new StackOverFlow();
rid.start(2);
}
public void start(final int workersNumber) {
// create an Akka system
ActorSystem system = ActorSystem.create("IntDec");
// create the result listener, which will print the result and shutdown the system
final ActorRef listener = system.actorOf(new Props(Listener.class), "listener");
// create the master
ActorRef master = system.actorOf(new Props(new UntypedActorFactory() {
public UntypedActor create() {
return new Master(workersNumber, listener);
}
}), "master");
// start the computation
master.tell(new Compute());
}
static class Compute {}
static class Decrement {
private final int intValue;
public Decrement(int value) {
this.intValue = value;
}
public int getValue() {
return intValue;
}
}
static class NewIntValue {
private final int intValue;
public NewIntValue(int value) {
intValue = value;
}
public int getValue() {
return intValue;
}
}
static class FinalIntValue {
private final int intValue;
public FinalIntValue(int value) {
intValue = value;
}
public int getValue() {
return intValue;
}
}
public static class Worker extends UntypedActor {
private int resultsNumber = 0;
private final int messagesNumber = 2;
private final ActorRef workerRouter;
public Worker(final int workersNumber) {
workerRouter = getContext().actorOf(
new Props(new UntypedActorFactory() {
public UntypedActor create() {
return new Worker(workersNumber);
}
}).withRouter(
new RoundRobinRouter(workersNumber)
), "workerRouter");
}
public void onReceive(Object message) {
if (message instanceof Decrement) {
// get and decrement the int value
Decrement job = (Decrement) message;
int intValue = job.getValue();
System.out.println("\tWorker:Decrement " + intValue);
intValue--;
if (intValue == 0) {
// we are finished
getSender().tell(new NewIntValue(intValue), getSelf());
// stop this actor and all its supervised children
getContext().stop(getSelf());
} else {
for (int i = 0; i < messagesNumber; i++) {
// notify a worker
workerRouter.tell(new Decrement(intValue), getSelf());
}
}
} else if (message instanceof NewIntValue) {
NewIntValue newInt = (NewIntValue) message;
int intValue = newInt.getValue();
System.out.println("\tWorker:NewIntValue!!! " + intValue);
resultsNumber++;
if (resultsNumber == messagesNumber) {
// we are finished
getSender().tell(new NewIntValue(intValue), getSelf());
// stop this actor and all its supervised children
getContext().stop(getSelf());
}
} else unhandled(message);
}
}
public static class Master extends UntypedActor {
private int resultsNumber = 0;
private final int messagesNumber = 2;
private int intValue = 2;
private final ActorRef listener;
private final ActorRef workerRouter;
public Master(final int workersNumber, ActorRef listener) {
this.listener = listener;
workerRouter = getContext().actorOf(
new Props(new UntypedActorFactory() {
public UntypedActor create() {
return new Worker(workersNumber);
}
}).withRouter(
new RoundRobinRouter(workersNumber)
), "workerRouter");
}
public void onReceive(Object message) {
if (message instanceof Compute) {
System.out.println("\tMaster:Compute " + intValue);
System.out.println(
"\n\tInitial integer value: " + intValue);
for (int i = 0; i < messagesNumber; i++) {
workerRouter.tell(new Decrement(intValue), getSelf());
}
} else if (message instanceof NewIntValue) {
NewIntValue newInt = (NewIntValue) message;
intValue = newInt.getValue();
System.out.println("\tMaster:NewIntValue " + intValue);
resultsNumber++;
if (resultsNumber == messagesNumber) {
// send the result to the listener
listener.tell(new FinalIntValue(intValue), getSelf());
// stop this actor and all its supervised children
getContext().stop(getSelf());
}
} else unhandled(message);
}
}
public static class Listener extends UntypedActor {
public void onReceive(Object message) {
if (message instanceof FinalIntValue) {
FinalIntValue finalInt = (FinalIntValue) message;
System.out.println(
"\n\tFinal integer value: " + finalInt.getValue());
getContext().system().shutdown();
} else {
unhandled(message);
}
}
}
}
答案 0 :(得分:1)
private ActorRef sender;
添加到Worker
类; sender = getSender();
消息的开头添加Decrement
; getSender()
方法中将sender
更改为NewIntValue
Worker
class;