Class ChunkedOutputStream.Builder

All Implemented Interfaces:
IOSupplier<ChunkedOutputStream>
Enclosing class:
ChunkedOutputStream

Builds a new UnsynchronizedByteArrayOutputStream.

Using File IO:

UnsynchronizedByteArrayOutputStream s = UnsynchronizedByteArrayOutputStream.builder()
  .setBufferSize(8192)
  .get();

Using NIO Path:

UnsynchronizedByteArrayOutputStream s = UnsynchronizedByteArrayOutputStream.builder()
  .setBufferSize(8192)
  .get();

Since:
2.13.0
See Also: