ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/JSR166TestCase.java
(Generate patch)

Comparing jsr166/src/test/tck/JSR166TestCase.java (file contents):
Revision 1.148 by jsr166, Mon Sep 28 08:23:49 2015 UTC vs.
Revision 1.149 by jsr166, Sat Oct 3 16:57:25 2015 UTC

# Line 743 | Line 743 | public class JSR166TestCase extends Test
743      }
744  
745      /**
746 +     * Allows use of try-with-resources with per-test thread pools.
747 +     */
748 +    static class PoolCloser<T extends ExecutorService>
749 +            implements AutoCloseable {
750 +        public final T pool;
751 +        public PoolCloser(T pool) { this.pool = pool; }
752 +        public void close() { joinPool(pool); }
753 +    }
754 +
755 +    /**
756       * Waits out termination of a thread pool or fails doing so.
757       */
758 <    void joinPool(ExecutorService pool) {
758 >    static void joinPool(ExecutorService pool) {
759          try {
760              pool.shutdown();
761              if (!pool.awaitTermination(2 * LONG_DELAY_MS, MILLISECONDS))

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines