Uses of Class
org.forgerock.http.io.BranchingInputStream
-
Packages that use BranchingInputStream Package Description org.forgerock.http.io Provides stream buffering, branching, and storage functions.org.forgerock.http.protocol Models and manages elements of the Hypertext Transfer Protocol. -
-
Uses of BranchingInputStream in org.forgerock.http.io
Subclasses of BranchingInputStream in org.forgerock.http.io Modifier and Type Class Description class
FileBranchingStream
ABranchingInputStream
for reading from files.Methods in org.forgerock.http.io that return BranchingInputStream Modifier and Type Method Description abstract BranchingInputStream
BranchingInputStream. branch()
Creates a new branch at this stream's current position.BranchingInputStream
FileBranchingStream. branch()
abstract BranchingInputStream
BranchingInputStream. copy()
Creates a twin of this stream at this stream's current position.BranchingInputStream
FileBranchingStream. copy()
static BranchingInputStream
IO. newBranchingInputStream(byte[] bytes)
Creates a new branching input stream that wraps a byte array.static BranchingInputStream
IO. newBranchingInputStream(InputStream in, Factory<Buffer> bufferFactory)
Creates a new branching input stream to wrap another input stream.BranchingInputStream
BranchingInputStream. parent()
Returns the parent branching input stream from which this branch was created, ornull
if this is the trunk.Constructors in org.forgerock.http.io with parameters of type BranchingInputStream Constructor Description BranchingInputStream(BranchingInputStream parent)
Initialise theBranchingInputStream
with the specified parent. -
Uses of BranchingInputStream in org.forgerock.http.protocol
Methods in org.forgerock.http.protocol with parameters of type BranchingInputStream Modifier and Type Method Description void
Entity. setRawContentInputStream(BranchingInputStream is)
Sets the content of this entity to the provided input stream.
-