InterruptedIOExceptionNameInterruptedIOExceptionSynopsis
DescriptionAn InterruptedIOException is thrown when an I/O operation is interrupted. This can occur when a thread is waiting for data to become available for a PipedInputStream or PipedReader to read. It can also occur when a thread is waiting for buffer space to become available for a PipedOutputStream or PipedWriter to write to. If the thread's interrupt() method is called while the thread is waiting, the read() or write() method in question throws an InterruptedIOException. Class Summary
public class java.io.InterruptedIOException extends java.io.IOException { // Variables public int bytesTransferred; // Constructors public InterruptedIOException(); public InterruptedIOException(String s); } VariablesbytesTransferredpublic int bytesTransferred
ConstructorsInterruptedIOExceptionpublic InterruptedIOException()
public InterruptedIOException(String s)
Inherited Methods
See AlsoException, IOException, Throwable |
|