Ismael Hamed
Ismael Hamed
# Feature Request **Is your feature request related to a problem?** The old `Grpc` package copies `libgrpc_csharp_ext.x64.dylib` and `libgrpc_csharp_ext.x86.so` all over the place. That's ~17MB of unnecessary libs being copied...
Fixes #6036 ## Changes Since this already exists in Akka Typed and it isn't built on top of anything Akka-Typed specific, I put together a quick port with this functionality:...
https://github.com/akka/akka/blob/0e4d41ad33dbeb00b598cb75b4d29899371bdc8c/akka-actor/src/main/scala/akka/dispatch/CachingConfig.scala#L156 This allows to have an array of arbitrary objects that can be retrieved as a list of Configs: ```hocon my-list = [ { foo = "cat" bar = 1...
So far, we've identified some worrisome limitations in the current Akka Remoting implementation. Gladly they don't show up often, but when they do it's difficult to deal with them: *...
Supersedes #6511 ## Changes - Removed deprecated `IWithBoundedStash`interface. - Refactored `StashFactory` and removed unnecessary `AbstractStash` implementations. - Brought `ActorWithStashSpec` up-to-date with the JVM. ## Checklist * [X] This change follows...
I've noticed the `KafkaConsumerActor` feature to share a `KafkaConsumer` instance via the `PlainExternalSource` is implemented but is kept internal.