Andreas Dirnberger

Results 87 comments of Andreas Dirnberger

@Aaronontheweb is it poissble to add some special integrations tests somewhere to test for memory leaks ? - Memory leaks could be tested over WeakReferences and "GC.Collect" - Death lock...

Its the whole materialized graph including the stage instance construct that are not released. The special thing about `Source.From(records)` is that it holds a reference to the full data list...

Its not that OOM exception should be handled explicitly, but `system.WhenTerminated` should be completed even after an exception in `system.Terminate()` itself. The callbacks registered in `System.RegisterOnTermination(StopApplication)` could/should be executed even...

In my opinion `system.Terminate()` should have the same behavior as `Dispose()` that even when it internaly throws the end result of the instance is `disposed`

The channel executor does not create any threads by itself. It buffers the tasks and queues them sorted to the regular TaskScheduler. Ask() creates a TaskCompletionSource internaly. The problem is,...

I got already an issue with it https://github.com/akkadotnet/akka.net/issues/4636 @Aaronontheweb could u try my commit https://github.com/Zetanova/akka.net/tree/helios-idle-cpu I am somehow not capable to run the MultiNodeRunner I try https://github.com/helios-io/DedicatedThreadPool out

https://github.com/akkadotnet/akka.net/pull/7074 It is a PR to improve the default-executor and channel-executor

It was a blank usage of the dave container image. I didn't investigate more then this.

I found a method to get the SIGINT signal (windows and linux) from the pwsh.exe to be useable for sync-over-async calls on gist [signal-cancellation](https://gist.github.com/Zetanova/9e1a0d5e35d9ce876840b9d9b22445b3)

Yes, until the powershell team implements something they dont want to implement for years. This SignalToken can be used to abort scripts in the pwsh.exe on script creation time. The...