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

/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSelectionKeyImpl.java48 private int readyOps; field in class:SelectionKeyImpl
86 public int readyOps() { method in class:SelectionKeyImpl
88 return readyOps;
95 readyOps = ops;
99 return readyOps;
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DSelectionKey.java212 public abstract int readyOps(); method in class:SelectionKey
276 * k.readyOps()&nbsp;&amp;&nbsp;OP_READ&nbsp;!=&nbsp;0</pre></blockquote>
282 * <tt>readyOps()</tt>&nbsp;<tt>&</tt>&nbsp;<tt>OP_READ</tt> is
289 return (readyOps() & OP_READ) != 0;
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;
323 * k.readyOps()&nbsp;&amp;&nbsp;OP_CONNECT&nbsp;!=&nbsp;0</pre></blockquote>
329 * <tt>readyOps()</tt>&nbsp;<tt>&</tt>&nbsp;<tt>OP_CONNECT</tt>
336 return (readyOps()
[all...]

Completed in 31 milliseconds