-
Notifications
You must be signed in to change notification settings - Fork 203
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
Scheduling hook into ExecuteStateManagerImpl #753
Scheduling hook into ExecuteStateManagerImpl #753
Conversation
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.
Generally looks good, besides the (blocking) nit I left one more item to think about... What is the intention if the user wants multiple mutator hooks? Right now we could do a composite hook and that is probably fine.
@@ -211,7 +211,8 @@ public void setupActor() { | |||
"", | |||
false, | |||
ImmutableMap.of(), | |||
new CpuWeightedFitnessCalculator()); | |||
new CpuWeightedFitnessCalculator(), |
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.
nit: I generally prefer the overloaded constructor so that the tests / clients who do not use the change do not need to change in any way to ignore new functionality. Especially true since the Netflix injector will likely break without having an appropriate Bean
.
…e the configuration class doesn't seem to like default null values
@crioux-stripe I've gone ahead and overloaded w.r.t multiple hooks, yep, my thought that it was more flexible for the user if they implement a ChainedHook themselves and let them define how they want to cycle through hooks themselves (e.g. if one hook returns no instances do we just return all instances from the previous hook in stack in an attempt to schedule no matter what, or, do we really return nothing / throw an exception to stop this from being scheduled, etc) |
Context
Allow us to plug a hook that mutates the list of available task executors
Checklist
./gradlew build
compiles code correctly./gradlew test
passes all tests