-
Notifications
You must be signed in to change notification settings - Fork 0
Overview of Entire NIOAsyncRuntime Implementation #2
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: main
Are you sure you want to change the base?
Conversation
…nc-runtime and target/library name NIOAsyncRuntime
…ng AsyncEventLoop.
…uch easier to run.
… Swift Concurrency and the AsyncEventLoopExecutor. Forms a key foundation for several vapor repositories to use NIO without using NIOPosix. This enables a large amount of wasm compilation for packages that currently consume NIOPosix.
…st majority of these tests were ported from NIOPosix tests for SelectableEventLoop, which AsyncEventLoop replaces.
…he vast majority of these tests were ported from NIOPosix tests for its own MultiThreadedEventLoopGroup. These tests ensure basic feature parity between the two different implementations.
…ensure feature parity.
6be4de6 to
24a2d65
Compare
| @@ -0,0 +1,44 @@ | |||
| name: Pull request | |||
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.
Don't merge this PR. It is meant to show all changes together
| @@ -0,0 +1,44 @@ | |||
| name: Pull request | |||
|
|
|||
| on: | |||
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.
Please don't review this PR. Review the small PR's. This larger PR is just an aid in case seeing everything at once is helpful.
Overview
This PR shows all changes planned for the initial release of NIOAsyncRuntime, which is an re-implementation of the portions of NIOPosix used by the PassiveLogic dependency tree, using Swift Concurrency.
Below is a list of all changes included in the initial implementation of NIOAsyncRuntime.
CI and testing setup:
Implementations:
Tests:
Note that these tests are almost direct ports of the tests in NIOPosix for the corresponding functionality.
PR Dependencies:
Tests performed
In addition to the unit tests implemented, the changes have also been tested in real-world application by running
GraphManagerandQuantumProjectManagerin the browser to migrate database schemas, connect with our server, and pull data from a real user account.