-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Update Akka.IO to use System.IO.Pipelines for reading from socket #4017
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,10 +15,10 @@ | |
| <NewtonsoftJsonVersion>9.0.1</NewtonsoftJsonVersion> | ||
| <NBenchVersion>1.2.2</NBenchVersion> | ||
| <ProtobufVersion>3.10.0</ProtobufVersion> | ||
| <NetCoreTestVersion>netcoreapp2.1</NetCoreTestVersion> | ||
| <NetCoreTestVersion>netcoreapp3.0</NetCoreTestVersion> | ||
| <NetFrameworkTestVersion>net461</NetFrameworkTestVersion> | ||
| <NetStandardLibVersion>netstandard2.0</NetStandardLibVersion> | ||
| <NetFrameworkLibVersion>net452</NetFrameworkLibVersion> | ||
| <NetStandardLibVersion>netstandard2.1</NetStandardLibVersion> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Like I mentioned in PR comments, stick to .NET Standard 2.0 for the time being - we can add the pipelines stuff in later. Let's just get SocketAsyncEventArgs usage optimized / improved doing what we can for now. |
||
| <NetFrameworkLibVersion>net461</NetFrameworkLibVersion> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Once we figure out what to do with the parts of Akka.NET that depend on System.Configuration, we will drop explicit .NET Framework support and just stick to standard. |
||
| <FluentAssertionsVersion>4.14.0</FluentAssertionsVersion> | ||
| <FsCheckVersion>2.9.0</FsCheckVersion> | ||
| <AkkaPackageTags>akka;actors;actor model;Akka;concurrency</AkkaPackageTags> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hold off on this if you can - requires a much bigger set of changes on the build system side to support it.