Searched defs:OP_WRITE (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/channels/
H A DSelectionKey.java234 * <tt>OP_WRITE</tt> at the start of a <a
238 * will add <tt>OP_WRITE</tt> to the key's ready set and add the key to its
241 public static final int OP_WRITE = 1 << 2; field in class:SelectionKey
299 * k.readyOps()&nbsp;&amp;&nbsp;OP_WRITE&nbsp;!=&nbsp;0</pre></blockquote>
305 * <tt>readyOps()</tt>&nbsp;<tt>&</tt>&nbsp;<tt>OP_WRITE</tt>
312 return (readyOps() & OP_WRITE) != 0;

Completed in 264 milliseconds