-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Create an AsyncTaskRunEngine and wire it up to run async tasks #14743
Conversation
CodSpeed Performance ReportMerging #14743 will not alter performanceComparing Summary
|
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.
a few minor comments
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.
This is looking great! I left a couple of small comments.
232aaac
to
1fbba5c
Compare
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.
LGTM!
1fbba5c
to
6d0b47e
Compare
6d0b47e
to
e57689e
Compare
This creates an
AsyncTaskRunEngine
and wires it up to run async tasks.To reduce the code duplication I created a
BaseTaskRunEngine
that has all of the sharedsync
code, and then aSyncTaskRunEngine
for sync tasks, and the newAsyncTaskRunEngine
for async tasks.Closes #14113