KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > nio > channels > spi > AbstractSelectableChannel

java.nio.channels.spi
Class AbstractSelectableChannel

java.lang.Object
  extended by java.nio.channels.spi.AbstractInterruptibleChannel
      extended by java.nio.channels.SelectableChannel
          extended by java.nio.channels.spi.AbstractSelectableChannel
All Implemented Interfaces:
Closeable, Channel, InterruptibleChannel
Direct Known Subclasses:
DatagramChannel, Pipe.SinkChannel, Pipe.SourceChannel, ServerSocketChannel, SocketChannel
See Also:
Source Code

protected AbstractSelectableChannel(SelectorProvider provider)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final Object blockingLock()
See Also:
SelectableChannel, register, configureBlocking
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final SelectableChannel configureBlocking(boolean block)
                                          throws IOException
See Also:
ClosedChannelException, implConfigureBlocking
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected final void implCloseChannel()
                               throws IOException
See Also:
AbstractInterruptibleChannel, implCloseSelectableChannel, close
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract void implCloseSelectableChannel()
                                            throws IOException
See Also:
close
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract void implConfigureBlocking(boolean block)
                                       throws IOException
See Also:
configureBlocking
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final boolean isBlocking()
See Also:
SelectableChannel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final boolean isRegistered()
See Also:
SelectableChannel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final SelectionKey keyFor(Selector sel)
See Also:
SelectableChannel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final SelectorProvider provider()
See Also:
SelectableChannel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final SelectionKey register(Selector sel,
                                   int ops,
                                   Object att)
                            throws ClosedChannelException
See Also:
SelectableChannel, register
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags