Java java.io PipedReader fields, constructors, methods, implement or subclass

Example usage for Java java.io PipedReader fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.io PipedReader.

The text is from its open source code.

Constructor

PipedReader()
Creates a PipedReader so that it is not yet #connect(java.io.PipedWriter) connected .
PipedReader(PipedWriter src)
Creates a PipedReader so that it is connected to the piped writer src.
PipedReader(int pipeSize)
Creates a PipedReader so that it is not yet #connect(java.io.PipedWriter) connected and uses the specified pipe size for the pipe's buffer.
PipedReader(PipedWriter src, int pipeSize)
Creates a PipedReader so that it is connected to the piped writer src and uses the specified pipe size for the pipe's buffer.

Method

voidclose()
Closes this piped stream and releases any system resources associated with the stream.
voidconnect(PipedWriter src)
Causes this piped reader to be connected to the piped writer src.
intread()
Reads the next character of data from this piped stream.
intread(char cbuf[], int off, int len)
Reads up to len characters of data from this piped stream into an array of characters.
booleanready()
Tell whether this stream is ready to be read.