We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The current Loader API looks
Loader.bootstrap().load()
However, we probably want to add other enrichments to the API, such as converters or sources. Then we would have something like
Loader.bootstrap().converter(...).source(...).load()
Which would make Loader mutable. Then we have two possibilities:
Loader.bootstrap().build().load()
Loader.builder().build().load()
In summary, should we use bootstrap() method, or builder() method?
bootstrap()
builder()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current Loader API looks
However, we probably want to add other enrichments to the API, such as converters or sources. Then we would have something like
Which would make Loader mutable. Then we have two possibilities:
Loader.bootstrap().build().load()
which would more nicely turn intoLoader.builder().build().load()
In summary, should we use
bootstrap()
method, orbuilder()
method?The text was updated successfully, but these errors were encountered: