Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.nio.channels.Selector

Uses of Selector in java.nio.channels
 

Methods in java.nio.channels that return Selector
static Selector Selector.open()
          Opens a selector.
abstract  Selector Selector.wakeup()
          Causes the first selection operation that has not yet returned to return immediately.
abstract  Selector SelectionKey.selector()
          Returns the selector for which this key was created.
 

Methods in java.nio.channels with parameters of type Selector
abstract  SelectionKey SelectableChannel.keyFor(Selector sel)
          Retrieves the key representing the channel's registration with the given selector.
 SelectionKey SelectableChannel.register(Selector sel, int ops)
          Registers this channel with the given selector, returning a selection key.
abstract  SelectionKey SelectableChannel.register(Selector sel, int ops, java.lang.Object att)
          Registers this channel with the given selector, returning a selection key.