Registry / other / akka-actor-typed-2-12

akka-actor-typed-2-12

JSON →
library2.8.8javamavenunverified

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-typed_2.12</artifactId> <version>2.8.8</version> </dependency>
INSTALL
IMPORT
SIG · AKKA-ACTOR-TYPED-2
A
akka-actor-typed-2-12
otherjavav2.8.8
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.typed.ActorSystem

Creates a simple typed actor system and sends a message.

import akka.actor.typed.ActorSystem; import akka.actor.typed.Behavior; import akka.actor.typed.javadsl.Behaviors; public class Main { public static void main(String[] args) { Behavior<String> behavior = Behaviors.receiveMessage(msg -> { System.out.println("Received: " + msg); return Behaviors.same(); }); ActorSystem<String> system = ActorSystem.create(behavior, "hello-world"); system.tell("Hello!"); } }
Debug
Known issues
gotchaAkka Classic (untyped) and Akka Typed APIs are not fully compatible; mixing them requires bridging.
fix
Use Akka Typed consistently or use the classic-to-typed adapter.
affects: >=2.6.0
Upgrade
Version history
2.8.8latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
38 hits · last 30 days
node
32
Meta
2
OpenAI (training)
1
Resources
akka-actor-typed-2-12 — mvn dependency:get akka-actor-typed-2-12 · libregistry