removing the delegate from the function signature #11455
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
and making it into an abstract overrridden function instead
Context
While going through the review for Eric's performance PRs I've had some difficulties in tracking to code flow due to the delegate usage. This is a PR to open a discussion about a possibility of replacing some of the delegates with a combination of an abstract function + override.
The downside is an introduction of a variable to store the factory which is otherwise used from a closure. Refactoring this factory away collides with nodeInProc/nodeOutOfProc separation and could result in code duplication.
If there is a better way to pass the factory around, I'm open to suggestions.
Changes Made
replaced internal delegate void NodeContextCreatedDelegate(NodeContext context);
with
protected abstract void CreateNode(NodeContext context);
so that I keep the idea of NodeProviderOutOfProc & NodeProviderOutOfProcTaskHost can use the same structure while removing the delegate since tracking it add additional level of indirection to the code flow.
Testing
If current tests still work then I will take that as a sign that I didn't break anything.
Notes
A quick PR to open a discussion about some of the delegates we have.
There is at least one similar delegate in place I would like to remove as well if we find this approach reasonable.