This class encapsulates the low-level machinery required to implement
the asynchronous closing and interruption of channels. A concrete channel
class must invoke the begin
and end
methods
before and after, respectively, invoking an I/O operation that might block
indefinitely. In order to ensure that the end
method is always
invoked, these methods should be used within a
try
... finally
block:
boolean completed = false; try { begin(); completed = ...; // Perform blocking I/O operation return ...; // Return result } finally { end(completed); }
The completed
argument to the end
method tells
whether or not the I/O operation actually completed, that is, whether it had
any effect that would be visible to the invoker. In the case of an
operation that reads bytes, for example, this argument should be
true
if, and only if, some bytes were actually transferred into the
invoker's target buffer.
A concrete channel class must also implement the implCloseChannel
method in such a way that if it is
invoked while another thread is blocked in a native I/O operation upon the
channel then that operation will immediately return, either by throwing an
exception or by returning normally. If a thread is interrupted or the
channel upon which it is blocked is asynchronously closed then the channel's
end
method will throw the appropriate exception.
This class performs the synchronization required to implement the java.
specification. Implementations of the implCloseChannel
method need not synchronize against
other threads that might be attempting to close the channel.
Modifier and Type | Field and Description |
---|---|
private volatile boolean | |
private final Object | |
private static final long | |
private volatile Object | |
private final Interruptible | |
private static final Unsafe |
Access | Constructor and Description |
---|---|
protected |
Modifier and Type | Method and Description |
---|---|
protected final void | |
pack-priv static void | |
public final void | close()
Implements java. Closes this channel. |
protected final void | end(boolean
true if, and only if, the I/O operation completed
successfully, that is, had some effect that would be visible to
the operation's invokerMarks the end of an I/O operation that might block indefinitely. |
protected abstract void | |
public final boolean | |
private void |
closed | back to summary |
---|---|
private volatile boolean closed |
closeLock | back to summary |
---|---|
private final Object closeLock |
INTERRUPTED_TARGET | back to summary |
---|---|
private static final long INTERRUPTED_TARGET |
interruptedTarget | back to summary |
---|---|
private volatile Object interruptedTarget |
interruptor | back to summary |
---|---|
private final Interruptible interruptor |
U | back to summary |
---|---|
private static final Unsafe U |
AbstractInterruptibleChannel | back to summary |
---|---|
protected AbstractInterruptibleChannel() Initializes a new instance of this class. |
begin | back to summary |
---|---|
protected final void begin() Marks the beginning of an I/O operation that might block indefinitely. This method should be invoked in tandem with the |
blockedOn | back to summary |
---|---|
pack-priv static void blockedOn(Interruptible intr) |
close | back to summary |
---|---|
public final void close() throws IOException Implements java. Closes this channel. If the channel has already been closed then this method returns
immediately. Otherwise it marks the channel as closed and then invokes
the
|
end | back to summary |
---|---|
protected final void end(boolean completed) throws AsynchronousCloseException Marks the end of an I/O operation that might block indefinitely. This method should be invoked in tandem with the
|
implCloseChannel | back to summary |
---|---|
protected abstract void implCloseChannel() throws IOException Closes this channel. This method is invoked by the An implementation of this method must arrange for any other thread that is blocked in an I/O operation upon this channel to return immediately, either by throwing an exception or by returning normally.
|
isOpen | back to summary |
---|---|
public final boolean isOpen() Implements java. Doc from java. Tells whether or not this channel is open.
|
trySetTarget | back to summary |
---|---|
private void trySetTarget(Thread target) |