-
Currently there is no clear way how to wait for the actor system to complete as the main thread would exit, since creation of the actor system dose not block.
After discussing this issue with @leen…
-
The purpose of this issue is to illuminate to which degree we shall support typed and untyped actors to coexist and collaborate—within the same ActorSystem as well as across systems (in-JVM; remoting …
rkuhn updated
7 years ago
-
Motivation:
I want to do some rate limiting and just fail the single task, eg when combined with `mapAsync`.
Currently seems I can't observe the backpressure.
`onBackpressure` is only been call…
-
smtp.host = smtp.gmail.com
smtp.port = 465
smtp.ssl = true
smtp.user = myId@company.co.kr
smtp.password = "myPassword"
smtp.domain = ""
smtp.mock = false
smtp.archive.size = 5
알림을 이메일로 받기 위하…
-
I expect to be able to set the play config resource via command-line argument. I have tried several different ways.
`sbt -Dconfig.resource=application.local.conf run`
Relevant output
```
--- (…
-
If an actor system isn't configured via `withActorSystem` this library creates its own actor system which is the best alternative when used via reflection.
It might be useful to complement the `Akk…
ennru updated
3 years ago
-
As a beginner with AKKA (using javadsl) I had some troubles sending the "ClearJournal" message to the in-memory-store. Currently it seems not to be possible to do this with a proper Java-API. I had to…
-
There seems to be no way to specify jvm executions options. I am trying to add "-Dconfig.file=/Users/myhome/reference.conf" to the JVM options for the worksheet so that I can experiment with Akka with…
-
Hi,
I am trying to watch a config file for modifications with the following piece of code:
```
object WatchTest extends App {
implicit val system: ActorSystem = ActorSystem("mySystem")
val…
-
When `Cluster.ShutdownAsync(true)` is called, grain actors don't receive `Stopping`/`Stopped` messages. When `PID.Stop` is called during `ActorSystem` shutdown process, the user message is created but…