-
## Problem Description:
The go interface structure involves two basic properties: (type, data). At run time, it may be (nil, nil), and mayby be (actor.Actor, nil). Once the latter situation, it is l…
-
I.e. it is the streaming version of the "per-request-actor" pattern which is useful if the processing per element is very stateful and needs lots of dynamic conversations.
This is a strictly one-to-o…
-
========================================
Version of Akka.NET? 1.5.0-Alpha
Which Akka.NET Modules? Akka or Akka.FSharp
========================================
The IActorRef of a child dies or re…
-
- [ ] [Terminology, Concepts](https://github.com/akka-ja/akka-doc-ja/issues/14)
- [ ] [Actor Systems](https://github.com/akka-ja/akka-doc-ja/issues/15)
- [ ] [What is an Actor?](https://github.com/akk…
-
Currently, the only way to know that the "child" actor failed, is to employ the 'ask' pattern:
``` python
actor = MyActor.start()
try:
actor.ask({'command':'hey'})
except Exception:
# act…
-
**Please describe what you are trying to understand**
https://getakka.net/articles/actors/routers.html#supervision
> "By default, pool routers use a custom strategy that only returns Escalate fo…
-
- [x] Remove Routers
- [x] Remove Persistence - use whatever lib you want
- [x] Merge all ibs into one. no use to having Proto.Remote as a separate lib
- [ ] Remove static Logging factory - make be…
-
With Celluloid 0.17.0 this sample code with supervise (simple `HTTP.run` works) fails (works with Celluloid 0.16):
``` ruby
require 'celluloid/autostart'
require 'reel'
supervisor = Reel::Server::HT…
-
See https://github.com/celluloid/celluloid-supervision/issues/28
If a supervised actor crashes early during startup (`initialize` -> `async.foo` -> `fail`), then it is possible for the supervising …
-
Hello,
I sometimes receive this error when running reactive kafka and I do not have any clue.
```
akka.pattern.AskTimeoutException: Ask timed out on [Actor[akka://default/system/kafka-consumer-…