Ismael Hamed
Ismael Hamed
Maybe we could do the same for the server pipeline: ```csharp var tlsHandler = Settings.Ssl.SuppressValidation ? TlsHandler.Server(Settings.Ssl.Certificate) : new TlsHandler(new ServerTlsSettings(Settings.Ssl.Certificate, negotiateClientCertificate: true)); ``` At this point I would also...
@Aaronontheweb I want to port the `ActorRefSource` stage and the `Source.ActorRefWithAck` operator, but that requires the `PhasedFusingActorMatelializer`. Do you guys have a timetable in mind for this issue?
Yes. This is the missing doc: https://doc.akka.io/docs/akka/current/persistence-query-leveldb.html But since all `SqlCommon` plugins are basically a port of the LevelDb plugin in the JVM, maybe this documentation should be added to...
You need the stand-alone HOCON library for this, right? I mean, there's no way to make this work right now, or is it?
This would work: ```csharp var source = Source.From(Enumerable.Range(1, 100)) .Select(i => (long)i) .WireTapMaterialized(Sink.ForEach(l => Output.WriteLine(l.ToString())), Keep.Right) .Async() .GroupBy(10, l => l % 10) .Sum((l, l1) => l + l1) .MergeSubstreams()...
Yes. We've had no problem with Akka so far but can't say the same with other third-party libraries.
I think that's because any exception in an actor's `PreStart` will throw `ActorInitializationException`, to which the default Supervisor Strategy will react by stopping (not restarting) the actor. If you use...
I guess `HasEntity` might have different meanings, depending on your use case. For instance: an entity could do exist but passivated on disk, in which case the ShardRegion wouldn't know.
The only thing I've found with this implementation is that if the user already have a `ClusterSingletonManager` that is persistent, due to how the manager's name is now automatically [constructed](https://github.com/akkadotnet/akka.net/pull/6050/files#diff-1a8b145d0fbf473a56b9f08d5b8fe561d7304960619f712d0582080f5c79d98fR81),...
Added some test and documentation.