Java org.apache.commons.io.input BoundedInputStream fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.io.input BoundedInputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.io.input BoundedInputStream.

The text is from its open source code.

Constructor

BoundedInputStream(InputStream in, long size)
Creates a new BoundedInputStream that wraps the given input stream and limits it to a certain size.

Method

intread(byte[] b)
Invokes the delegate's read(byte[]) method.
voidsetPropagateClose(boolean propagateClose)
Set whether the #close() method should propagate to the underling InputStream .