java Programming Glossary: interruptible
Why use a ReentrantLock if one can use synchronized(this)? http://stackoverflow.com/questions/11821801/why-use-a-reentrantlock-if-one-can-use-synchronizedthis Aside from that ReentrantLock supports lock polling and interruptible lock waits that support time out . ReentrantLock also has support.. provides that synchronized doesn't like timed lock waits interruptible lock waits non block structured locks multiple condition variables..
How to disable (or hide) the close (x) button on a JFrame? http://stackoverflow.com/questions/276254/how-to-disable-or-hide-the-close-x-button-on-a-jframe the close button during certain operations which are not interruptible. I know I can make the button not do anything or call a handler..
Thread interrupt not ending blocking call on input stream read http://stackoverflow.com/questions/3843363/thread-interrupt-not-ending-blocking-call-on-input-stream-read question You can't make a stream that doesn't support interruptible I O into an InterruptibleChannel simply by wrapping it and anyway.. extends AbstractInterruptibleChannel Not really interruptible implements ReadableByteChannel InputStream in share improve..
Is it possible to read from a InputStream with a timeout? http://stackoverflow.com/questions/804951/is-it-possible-to-read-from-a-inputstream-with-a-timeout by Sun's documentation. The in.read method may be non interruptible. Wrapping the InputStream in a Reader or InterruptibleChannel..
Cancelling a long running regex match? http://stackoverflow.com/questions/910740/cancelling-a-long-running-regex-match API components so far but Matcher.find does not seem to be interruptible and can take a very long time to return. Is there any better..
How to abort a thread in a fast and clean way in java? http://stackoverflow.com/questions/94011/how-to-abort-a-thread-in-a-fast-and-clean-way-in-java tolerable you might view each 3D update as a discrete non interruptible event and just let it run through to conclusion checking afterward..
|