[
https://issues.apache.org/jira/browse/IO-865?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17901341#comment-17901341
]
Nico Strecker commented on IO-865:
----------------------------------
Hello [~ggregory]
Thank you very much for the update and the additions i really like the approach
you have chosen.
Should we keep this issue opened until the 3.0 update and the removal of the
old code?
> ThrottledInputStream.Builder does not return builder instance for
> setMaxBytesPerSecond()
> ----------------------------------------------------------------------------------------
>
> Key: IO-865
> URL: https://issues.apache.org/jira/browse/IO-865
> Project: Commons IO
> Issue Type: Bug
> Components: Utilities
> Affects Versions: 2.18.0
> Reporter: Nico Strecker
> Priority: Minor
> Fix For: 3.0
>
>
> The ThrottledInputStream documentation contains the following example:
> {code:java}
> ThrottledInputStream in = ThrottledInputStream.builder()
> .setInputStream(inputStream)
> .setMaxBytesPerSecond(100_000)
> .get();{code}
> This example does not work because setMaxBytesPerSecond does not return the
> builder instance but void:
> {code:java}
> public void setMaxBytesPerSecond(final long maxBytesPerSecond) {
> this.maxBytesPerSecond = maxBytesPerSecond;
> } {code}
> Either we correct the documentation or we return the builder instance, which
> I would prefer.
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)