Jumi Actors

Jumi has its own little actor library to support concurrency and asynchronous event-driven programming. But since it’s such a cool little actor library, also other projects might want to use it. Jumi Actors is written in Java and has no dependencies.

To get started, read the user guide. The latest release of the jumi-actors module can be downloaded from Maven Central. For release details see the release notes.

Example

Given the interface:

public interface Greeter {
    void sayGreeting(String name);
}

When we run the code:

// configuration
ExecutorService actorsThreadPool = Executors.newCachedThreadPool();
Actors actors = new MultiThreadedActors(
        actorsThreadPool,
        new DynamicEventizerProvider(),
        new CrashEarlyFailureHandler(),
        new NullMessageListener()
);
ActorThread actorThread = actors.startActorThread();

// usage
ActorRef<Greeter> helloGreeter = actorThread.bindActor(Greeter.class, new Greeter() {
    public void sayGreeting(String name) {
        System.out.println("Hello " + name + " from " + Thread.currentThread().getName());
    }
});
helloGreeter.tell().sayGreeting("World");
System.out.println("Wazzup from " + Thread.currentThread().getName());

// cleanup
actorThread.stop();
actorsThreadPool.shutdown();

Then it will print:

Wazzup from main
Hello World from pool-1-thread-1

For some explanations and more information, see the user guide and examples. You may also browse the Javadocs.

Features

  • Natural to Java - To send messages, you just create your own interface and call its methods. No need to create lots of small classes for individual messages, which would be easy with Scala’s case classes and pattern matching, but not in Java.

  • Statically Typed - Due to using Java interfaces, all messages are type checked and the actors are guaranteed to handle all messages (i.e. method calls) which can be sent to them.

  • Decoupled - The actors themselves are not infected by the actor library. No implementation inheritance, global state or other invasive anti-patterns. Not even annotations. Unit testing without the container is easy.

  • Small - Jumi Actors 0.1.64’s runtime JAR is only 33 KB (and could be made up to 50% smaller by removing optional classes), which is minuscule compared to for example Akka 2.0.2’s minimum of 1.76 MB (akka-actor.jar) + 8.44 MB (scala-library.jar). Naturally this means that it has less features, so if you are building distributed high-availablity systems then maybe Akka suits you better.

  • Many Actors per Thread - Creating lots of actors is cheap, because individual actors don’t require their own threads.

  • One Thread per Actor - Each actor will stay in the same thread all its life. You have explicit control over which actors are run in which thread. This makes it even safe to share some mutable state between closely related actors (such as anonymous inner classes). It also makes it possible to use Jumi’s thread-safety-agent to check at runtime that each @NotThreadSafe object is used only by one thread.

  • Garbage Collected Actors - After nobody can send messages to an actor, it will be garbage collected the same way as normal Java objects. Note however that the lifecycle of actor threads must be managed manually.

  • Deterministic Testing - Jumi Actors has a single-threaded implementation which is useful for integration testing actors with the container (unit tests should be written without any containers).

  • No Reflection (optional) - It’s possible to avoid reflection by using jumi-actors-maven-plugin to generate the necessary event stubs at build time. Though using reflection requires less setup and thus might be preferable at least in tests.