March 2005
Beginner to intermediate
1254 pages
104h 21m
English
AbstractInterruptibleChannel
This class exists as a convenience for implementors of new Channel classes. Application programmers should never need to subclass or use it.
Figure 13-43. java.nio.channels.spi.AbstractInterruptibleChannel
public abstract class AbstractInterruptibleChannel implements java.nio.channels.Channel, java.nio.channels.InterruptibleChannel { // Protected Constructors protected AbstractInterruptibleChannel( ); // Methods Implementing Channel public final void close( ) throws java.io.IOException; public final boolean isOpen( ); // Protected Instance Methods protected final void begin( ); protected final void end(boolean completed) throws java.nio.channels.AsynchronousCloseException; protected abstract void implCloseChannel( ) throws java.io.IOException; }
java.nio.channels.FileChannel,
java.nio.channels.SelectableChannel
Read now
Unlock full access