Aaron Stannard

Results 670 comments of Aaron Stannard

@ismaelhamed an old issue we never got around to implementing https://github.com/akkadotnet/akka.net/issues/3440 What do you think about adding an option to disable quarantines altogether?

Taking this off the v1.5 roadmap - we implemented push-based delivery. We'll wait and see if anyone actually wants / needs pull-based delivery.

Made some massive progress towards replacing the `DedicatedThreadPool` here: https://github.com/akkadotnet/akka.net/pull/4882 This should get merged into v1.4.19 and deployed as an opt-in feature, with an area for collecting feedback from users...

## Workaround If you're running into CPU consumption issues today, you can always disable the `internal-dispatcher` (which uses the `DedicatedThreadPool`) using the following HOCON: ```hocon akka.actor.internal-dispatcher{ type = "Dispatcher" executor...

Based on our conversation in chat, not doing Aeron ports - correct? @Arkatufus

@Arkatufus adding an issue for this to the current project. Here's what I really want out of this: 1. Take all of the items on your checklist, convert them into...

On mobile phone here so I'll be brief - love the idea of buffering write payloads on async write and doing them in batch, like you said Sent from my...

> Also there was an old SendAsync code, which was non-blocking, but not async/await compatible, but @Aaronontheweb removed it 1-2 years ago, as it caused some bugs somewhere close to...

> Update: just realized that to keep .NET Framework support, I will need to put some compiler directives to switch implementation between SocketAsyncEventArgs and System.IO.Pipelines.Pipe usage... Is it still a...

> I am suggesting to keep this PR as is, because sooner or later we might be able to add .netstandard2.1 target. At least, work with Pipelines to read the...