|
Akka/Scala example source code file (HelloWorld.java)
The HelloWorld.java Akka example source code
package sample.hello;
import akka.actor.AbstractActor;
import akka.actor.Props;
import akka.actor.ActorRef;
import akka.japi.pf.ReceiveBuilder;
import static sample.hello.Greeter.Msg;
public class HelloWorld extends AbstractActor {
public HelloWorld() {
receive(ReceiveBuilder.
matchEquals(Msg.DONE, m -> {
// when the greeter is done, stop this actor and with it the application
context().stop(self());
}).build());
}
@Override
public void preStart() {
// create the greeter actor
final ActorRef greeter = getContext().actorOf(Props.create(Greeter.class), "greeter");
// tell it to perform the greeting
greeter.tell(Greeter.Msg.GREET, self());
}
}
Other Akka source code examplesHere is a short list of links related to this Akka HelloWorld.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.