View Javadoc
1   /**
2    * Logback: the reliable, generic, fast and flexible logging framework.
3    * Copyright (C) 1999-2015, QOS.ch. All rights reserved.
4    *
5    * This program and the accompanying materials are dual-licensed under
6    * either the terms of the Eclipse Public License v1.0 as published by
7    * the Eclipse Foundation
8    *
9    *   or (per the licensee's choosing)
10   *
11   * under the terms of the GNU Lesser General Public License version 2.1
12   * as published by the Free Software Foundation.
13   */
14  package ch.qos.logback.core.contention;
15  
16  /**
17   * Useful scaffolding/harness to start and processPriorToRemoval multiple
18   * threads.
19   * 
20   * @author Joern Huxhorn
21   * @author Ralph Goers
22   * @author Ceki Gulcu
23   */
24  public class MultiThreadedHarness extends AbstractMultiThreadedHarness {
25  
26      final long overallDurationInMillis;
27  
28      public MultiThreadedHarness(long overallDurationInMillis) {
29          this.overallDurationInMillis = overallDurationInMillis;
30      }
31  
32      public void printEnvironmentInfo(String msg) {
33          System.out.println("=== " + msg + " ===");
34          System.out.println("java.runtime.version = " + System.getProperty("java.runtime.version"));
35          System.out.println("java.vendor          = " + System.getProperty("java.vendor"));
36          System.out.println("java.version         = " + System.getProperty("java.version"));
37          System.out.println("os.name              = " + System.getProperty("os.name"));
38          System.out.println("os.version           = " + System.getProperty("os.version"));
39      }
40  
41      public void waitUntilEndCondition() throws InterruptedException {
42          Thread.sleep(overallDurationInMillis);
43      }
44  }