-
Notifications
You must be signed in to change notification settings - Fork 399
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
feat(background-processor): add BackgroundProcessorBuilder for optional components #3688
base: main
Are you sure you want to change the base?
feat(background-processor): add BackgroundProcessorBuilder for optional components #3688
Conversation
👋 Thanks for assigning @tnull as a reviewer! |
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.
Already looks pretty good, one question though.
Also, do you have any idea how we could solve the same issue for the async variant of the background processor, i.e., for the optional arguments of process_events_async
?
@@ -1046,6 +1049,171 @@ impl BackgroundProcessor { | |||
None => Ok(()), | |||
} | |||
} | |||
|
|||
/// Creates a new [`BackgroundProcessorBuilder`] to construct a [`BackgroundProcessor`] with optional components. | |||
pub fn builder<'a, PS, EH, M, CM, PGS, RGS, G, UL, L, PM>( |
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.
I'm a bit confused on the purpose of this method: in which scenario would we already have a working BackgroundProcessor
to call builder
on, just to then use the BackgroundProcessorBuilder
to create yet another BackgroundProcessor
?
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 confusing indeed. I was thinking the BackgroundProcessorBuilder::new()
can be an internal method and accessible via builder
, but it doesn't make sense. I will remove the builder
method here and allow users use BackgroundProcessorBuilder::new()
directly.
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.
@tnull this doesn't take self
, though?
Either way, normally the builder pattern has the builder()
associated function, but works something like:
BackgroundProcessor::builder()
constructs a BackgroundProcessorBuilder
with "default" fields (which might be hard in this case), and you would not have any parameters for builder()
.
So yeah, probably removing this is best.
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.
@tnull this doesn't take self, though?
Ah true.
Either way, normally the builder pattern has the
builder()
associated function, but works something like:BackgroundProcessor::builder()
constructs aBackgroundProcessorBuilder
with "default" fields (which might be hard in this case), and you would not have any parameters forbuilder()
.
Yeah, unclear what defaults would be.
👋 The first review has been submitted! Do you think this PR is ready for a second reviewer? If so, click here to assign a second reviewer. |
Yea, I think we can extend the new |
The question is how this would work? What do you think? |
Thank you for the suggestion. I agree that introducing a What do you think about that? |
Sounds good to me, although we might need to account for the fact that the two variants have slightly different type requirements (i.e., trait bounds). But I think we should be able to accommodate that via feature-gates on |
Yes, that can be handled conditionally using feature-gates. I guess I can go ahead with the implementation, right? |
Fixes #3612