Prunkles
Prunkles
### Description Since this library is based on dotnet/reactive which is implemented using Tasks, it cannot be used with [Fable](https://fable.io/). ### Known workarounds There actually is a library that implements...
[FSharp.Control.Reactive](https://github.com/fsprojects/FSharp.Control.Reactive) is a library that also implements Rx for F#. But it is oriented for the native (.NET, not Fable) runtime and actually is based on [System.Reactive](https://github.com/dotnet/reactive). I like both...
## Description Currently, actor type names in logs or traces are constructed based on the `IActor` implementation type name. So if someone uses only `FunctionalActor`s or some other single configurable...
### Description https://github.com/asynkron/protoactor-dotnet/blob/173ee91cf52a06dddc7b147977b4fb47aba56c56/src/Proto.Actor/Context/DeadlineContextDecorator.cs#L50-L57 If the task returned by `base.Receive(envelope)` throws an exception synchronously (i.e. immediately, not awaiting anything, e.g. `Task.FromException(ex)`), then the code above just ignores the exception and returns....