A pair of channels that implements a unidirectional pipe.
A pipe consists of a pair of channels: A writable sink
channel and a readable source
channel. Once some bytes are written to the sink channel they can be read from the source channel in exactly the order in which they were written.
Whether or not a thread writing bytes to a pipe will block until another thread reads those bytes, or some previously-written bytes, from the pipe is system-dependent and therefore unspecified. Many pipe implementations will buffer up to a certain number of bytes between the sink and source channels, but such buffering should not be assumed.
Nested Classes
static class
A channel representing the writable end of a
Pipe
.
static class
A channel representing the readable end of a
Pipe
.
Constructors
protected
Initializes a new instance of this class.
Returns this pipe's sink channel.
Returns this pipe's source channel.
Methods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
protected Pipe()
Initializes a new instance of this class.
Returns this pipe's source channel.
Returns this pipe's sink channel.
The new pipe is created by invoking the openPipe
method of the system-wide default SelectorProvider
object.
IOException
- If an I/O error occurs
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4