You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The is currently no way to derive a pipeline builder from an existing pipeline builder instance.
This type of feature is useful for situations such as having a Spring bean for a "base" pipeline builder instance, which other beans would fork from, tweak, and then build into their respective pipeline bean. We can already have something similar by creating "factory" functions instead, but in this case we need to explicitly wire all required arguments (which can introduce discrepancies).
The general idea is along the lines of:
varnewBuilder = Pipeline.of(existingBuilder);
The text was updated successfully, but these errors were encountered:
@eledhwen I would like to contribute on this issue but having one doubt below :
Are steps and sinks fields necessary only for creating a pipeline builder from an existing builder?
Thanks
The is currently no way to derive a pipeline builder from an existing pipeline builder instance.
This type of feature is useful for situations such as having a Spring bean for a "base" pipeline builder instance, which other beans would fork from, tweak, and then build into their respective pipeline bean. We can already have something similar by creating "factory" functions instead, but in this case we need to explicitly wire all required arguments (which can introduce discrepancies).
The general idea is along the lines of:
The text was updated successfully, but these errors were encountered: