java.nio.channels.InterruptibleChannel | Channel |
Channels that implement this interface are both asynchronously closable and interruptible.
A channel that is asynchronously closable permits a thread blocked on an IO
operation (the IO thread) to be released by another thread calling the
channel's close()
method. The IO thread will throw an
AsynchronousCloseException
and the channel will be closed.
A channel that is interruptible permits a thread blocked on an IO operation
(the IO thread) to be interrupted by another thread (by invoking
interrupt()
on the IO thread). When the IO thread is
interrupted it will throw a ClosedByInterruptException
exception, it will have its interrupted status set, and the channel will be
closed. If the IO thread attempts to make an IO call with the interrupt
status set the call will immediately fail with a
ClosedByInterruptException
.
void | close() | |||||
Closes an InterruptibleChannel. |
close()
.
Any threads that are blocked on IO operations on this channel will be
interrupted with an AsynchronousCloseException
.
IOException | if an IO problem occurs closing the channel. |
---|
Copyright 2007 Google Inc. | Build 0.9_r1-98467 - 14 Aug 2008 18:48 |