Skip to content
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

New MembershipManager simplification opportunities (Daves unaddressed feedback) #4743

Open
toger5 opened this issue Mar 7, 2025 · 0 comments
Labels
T-Task Tasks for the team like planning

Comments

@toger5
Copy link
Contributor

toger5 commented Mar 7, 2025

This issue collects Daves feedback that has not yet been addressed.
It helps us tracking those points once we decide it is the right time to make resources to simplify the new membership manager (probably in the context of removing the SendFirstDelayedEvent/SendMainDelayedEvent complexity)

It took a lot of staring at this class to understand it. A number of points:

It's clearly trying hard to be a generic timer manager so it feels a bit odd that the callback has 'membership' in the name rather than just, 'onTimeout' or something. Same with hasMemberStateEvent which seems to live in here but just have the MembershipManager itself gut-wrench into here to change it.

This function is an absolute behemoth and I'd be surprised if sonar allows it under the function complexity gate. You could have individual callbacks for the various actions, or use one central one but just have the switch statement defer to individual private functions: they don't appear to share any variables.

private maxDelayExceededErrorHandler(error: unknown): boolean {

Feels like there could be a better name for this function although handleThingThatMayBeADelayExceededError feels a little long. Also, the things calling it still have to do something different depending on whether the thing turned out to be the error in question or not, so I'd be inclined to just separate the two concepts (ie. "is this thing a delay exceeded error" and "handle the error").

IMPORTANT:

I can't quite wrap my head around why the new actions need to be added to a separate array and then added on to the main one later by the loop function.

@dbkr dbkr added the T-Task Tasks for the team like planning label Mar 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
T-Task Tasks for the team like planning
Projects
None yet
Development

No branches or pull requests

2 participants