Registry / networking / akka-actor-2-11

akka-actor-2-11

JSON →
library2.5.32javamavenunverified

Akka is a toolkit for building highly concurrent, distributed, and resilient message-driven applications for Java and Scala.

<dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-actor_2.11</artifactId> <version>2.5.32</version> </dependency>
INSTALL
IMPORT
SIG · AKKA-ACTOR-2-11
A
akka-actor-2-11
networkingjavav2.5.32
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ActorSystem
akka.actor.ActorSystem

Create an Akka actor system and actor

import akka.actor.ActorSystem; import akka.actor.Props; import akka.actor.AbstractActor; public class Main { public static void main(String[] args) { ActorSystem system = ActorSystem.create("MySystem"); system.actorOf(Props.create(MyActor.class), "myActor"); System.out.println("Actor system created"); } static class MyActor extends AbstractActor { @Override public Receive createReceive() { return receiveBuilder().build(); } } }
Debug
Known issues
breakingAkka 2.5.x is for Scala 2.11; newer Scala versions require different artifacts (e.g., akka-actor_2.13).
fix
Use the correct artifact for your Scala version; consider upgrading to Akka 2.6.x or later for newer Scala versions.
affects: >=2.5.0 <2.6.0
Upgrade
Version history
2.5.32latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
34 hits · last 30 days
node
30
OpenAI (training)
2
Resources
akka-actor-2-11 — mvn dependency:get akka-actor-2-11 · libregistry