private static Callable makeCallable()

in client/src/main/java/com/google/cloud/solutions/opencensus/client/JettyTestClient.java [191:199]


  private static Callable<Void> makeCallable(TestOptions testOptions) {
    return () -> {
      String threadName = Thread.currentThread().getName();
      LOGGER.info("Starting thread " + threadName);
      JettyTestClient client = new JettyTestClient(testOptions);
      client.runTest();
      return null;
    };
  }