[
https://issues.apache.org/jira/browse/IO-865?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17901468#comment-17901468
]
Gary D. Gregory commented on IO-865:
------------------------------------
Hm ok, do you really want to write 10GB in bytes as a literal ?
You clould also conveet 10 GB per hour to 277,778 bytes per second, which is a
bit more readable.
https://m.convert-me.com/en/convert/data_transfer_rate/gigabytephour/gigabytephour-to-byteps.html?u=gigabytephour&v=1
> 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)