akka-actor Questions
2
How to use akka in Scala 3 ? I can't find akka dependencies while using scala 3
sbt errors :
[error] not found: /Users/admin/.ivy2/localcom.typesafe.akka/akka-actor-typed_3/2.6.15/ivys/ivy.xml
[err...
Frontiersman asked 28/7, 2021 at 13:19
1
Solved
Let's say I have a very simple actor class which receives any message and prints to the console.
class SimpleActor extends Actor{
def receive: Receive = {
case message =>
println(s"[${thi...
Firer asked 15/3, 2019 at 1:35
1
I'm pretty new to akka/actor systems and try to understand code which a colleague has written.
Doing this, I ask myself what kind of documentation would be helpful to get a faster understanding of ...
Recessive asked 30/5, 2018 at 12:40
1
Solved
If I create an logging actor like so
val logger: ActorRef =
actorSystem.actorOf(Props(new Logger()))
and the logger restarts due to an Exception, my logger stops writing to disk.
I had been se...
Cloven asked 11/2, 2016 at 7:10
1
© 2022 - 2024 — McMap. All rights reserved.