TimeoutException

Learn the reasons that cause TimeoutException to be thrown.

If you are interviewing, consider buying our number#1 course for Java Multithreading Interviews.

TimeoutException is used as a means to indicate that a blocking operation has timed-out. Consider the CyclicBarrier class (read about cyclic barrier here) which exposes the method await(), which takes in a timeout value. If a thread invokes this method on an object of CyclicBarrier and the barrier isn’t reached by other threads within the specified timeout by the first thread then TimeoutException is thrown and the barrier is broken. In some cases, values such as boolean can be returned to indicate timeout rather than throwing the TimeoutException.

The program in the widget below demonstrates an instance of a CyclicBarrier throwing the TimeoutException when the main thread awaits at the barrier for 100 milliseconds.

Create a free account to view this lesson.

By signing up, you agree to Educative's Terms of Service and Privacy Policy