25

特定の時間枠内で完了するかタイムアウトする必要がある同期実行パスがあります。main() メソッドを持つクラスがあり、その中でメソッド A() を呼び出して、B() を呼び出し、同じクラスまたは異なるクラスの C() を呼び出しているとしましょう.....使用せずにすべて同期します。 database 、webservice または file system などの外部リソース (TxManager またはそれぞれのタイムアウト API を使用して、それぞれを個別にタイムアウトできます)。つまり、CPU やメモリを集中的に使用する計算に似ています。Java でのタイムアウトのコーディング方法を教えてください。

私は TimerTask を見てきましたが、フローを非同期にし、タスクをスケジュールするためのものです。他の提案はありますか?

4

4 に答える 4

48

そのためにはExecutorServiceを使用する必要があります

ExecutorService executor = Executors.newSingleThreadExecutor();
Future<String> future = executor.submit(new Callable() {

    public String call() throws Exception {
        //do operations you want
        return "OK";
    }
});
try {
    System.out.println(future.get(2, TimeUnit.SECONDS)); //timeout is in 2 seconds
} catch (TimeoutException e) {
    System.err.println("Timeout");
}
executor.shutdownNow();
于 2013-06-21T11:08:44.067 に答える
0

タイムアウトを使用して同期呼び出しを行うことはできませんが、2 番目のスレッドを使用してエミュレートできます。これを行う例を次に示します。

package com.ardevco.example;

import java.util.Random;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;


class ExceptionThrower {
   public static <R> R throwUnchecked(Throwable t) {
      return ExceptionThrower.<RuntimeException, R> trhow0(t);
   }

   @SuppressWarnings("unchecked")
   private static <E extends Throwable, R> R trhow0(Throwable t) throws E {
      throw (E) t;
   }
}

class TestApplicationException1 extends Exception {
   private static final long serialVersionUID = 1L;

   public TestApplicationException1(String string) {
      super(string);
   }
};

class TestApplicationException2 extends Exception {
   private static final long serialVersionUID = 1L;

   public TestApplicationException2(String string) {
      super(string);
   }
};

class TestApplicationTimeoutException extends Exception {
   private static final long serialVersionUID = 1L;

   public TestApplicationTimeoutException(String string) {
      super(string);
   };
}

public class SynchronousTimeoutTester {

   public static final long SYNC_METHOD_TIMEOUT_IN_MILLISECONDS = 2000L;
   private final ExecutorService executorService = Executors.newSingleThreadExecutor();

   public static void main(String[] args) {
      SynchronousTimeoutTester tester = new SynchronousTimeoutTester();
      /* call the method asynchronously 10 times */
      for (int i = 0; i < 10; i++) {
         try {
            System.out.println("Result sync call: " + tester.getAsynchTest());
         }
         catch (TestApplicationException1 e) {
            System.out.println("catched as TestApplicationException1: " + e);
         }
         catch (TestApplicationException2 e) {
            System.out.println("catched as TestApplicationException2: " + e);
         }
         catch (TestApplicationTimeoutException e) {
            System.out.println("catched as TestApplicationTimeoutException: " + e);
         }
         catch (InterruptedException e) {
            System.out.println("catched as InterruptedException: " + e);
         }
         catch (Exception e) {
            System.out.println("catched as Exception: " + e);
         }
      }

      tester.shutdown();
   }

   private void shutdown() {
      executorService.shutdown();
      try {
         executorService.awaitTermination(Long.MAX_VALUE, TimeUnit.NANOSECONDS);
      }
      catch (InterruptedException e) {
         System.out.println("Error stopping threadpool:" + e);
      }
   }

   private Integer testAsynch() throws TestApplicationException1, TestApplicationException2, InterruptedException {
      Random random = new Random();
      switch (random.nextInt(10)) {
         case 0:
            return 0;
         case 1:
            throw new TestApplicationException1("thrown TestApplicationException1");
         case 2:
            throw new TestApplicationException2("thrown TestApplicationException2");
         case 3:
            Thread.sleep(10000L);
            return -1;
         case 4:
            throw new RuntimeException("thrown Exception");
         default:
            return random.nextInt(10);
      }
   }

   private Integer getAsynchTest() throws TestApplicationException1, TestApplicationException2, Exception {
      Integer dummy = null;

      Future<Integer> testAsynchF = executorService.submit(
                                                           new Callable<Integer>() {
                                                              public Integer call() throws Exception {
                                                                 return testAsynch();
                                                              }
                                                           });

      try {
         dummy = testAsynchF.get(SynchronousTimeoutTester.SYNC_METHOD_TIMEOUT_IN_MILLISECONDS, TimeUnit.MILLISECONDS);
      }
      catch (ExecutionException e1) {
         System.out.println("in getAsynchTest: ExecutionException: " + e1);
         ExceptionThrower.throwUnchecked(e1.getCause());
      }
      catch (TimeoutException e1) {
         System.out.println("in getAsynchTest: TimeoutException: " + e1);
         throw new TestApplicationTimeoutException("TimeoutException" + e1);
      }
      catch (InterruptedException e1) {
         System.out.println("in getAsynchTest: InterruptedException: " + e1);
         throw new Exception(e1);
      }

      return dummy;
   }

}
于 2015-08-28T10:45:55.430 に答える