Guest User

Untitled

a guest
Aug 16th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. How to gracefully interrupt blocking waits in Windows?
  2. interface IO {
  3. native void waitForEvents() throws InterruptedException, IOException;
  4. native int readBytes(byte[] data, int offset, int len) throws InterruptedException, IOException;
  5. }
Add Comment
Please, Sign In to add comment