Como definir o tempo limite em um método em Java e método de repetição para uma quantidade periódica do tempo

Ioanna Katsanou:

I java um método java, que faz uma ligação a um serviço web. Às vezes, este método leva muito tempo para fazer a conexão. Quero, por exemplo, que leva mais de 5 segundos, para interromper o procedimento atual e reiniciar todo por mais 3 vezes. Se todas as vezes falhar, então abortar completamente.

Eu escrevi o seguinte até agora:

        private ConnectionInterface  connectWithTimeout() throws MalformedURLException, Exception {

        ExecutorService executor = Executors.newCachedThreadPool();
        Callable<Object> task = new Callable<Object>() {
            public Object call() throws InterruptedException, MalformedURLException, Exception {
                return connectWithNoTimeout();  //This is the method that takes to long. If this method takes more than 5 seconds, I want to cancel and retry for 3 more times. Then abort completely.
            }
        };
        Future<Object> future = executor.submit(task);
        try {
            Object result = future.get(5, TimeUnit.SECONDS);
        } catch (TimeoutException ex) {

            System.out.println( "Timeout Occured");

        } catch (InterruptedException e) {
          System.out.println( " "InterruptedException Occured");


        } catch (ExecutionException e) {
            System.out.println( ""ExecutionException Occured");


        } finally {

            future.cancel(true); // here the method gets canceled. How do I retry it?
        }
        System.out.println( "Connected !!");
        return connectWithNoTimeout();
}



private ConnectionInterface  connectWithNoTimeout() throws MalformedURLException, Exception {}
Amongalen:

Seu método já tem um tempo limite de 5 segundos. Tudo que você precisa fazer agora é adicionar algum tipo um loop com 3 repetições. Você precisa de um contador de tempo limite e uma pausa depois de tentativa bem sucedida. Não sei o que você quer fazer quando outras exceções acontecem, breaks adicionado lá também. Seguinte código deve fazer o trabalho:

private ConnectionInterface  connectWithTimeout() throws MalformedURLException, Exception {
        int repeatCount = 0;

        ExecutorService executor = Executors.newCachedThreadPool();
        Callable<Object> task = new Callable<Object>() {
            public Object call() throws InterruptedException, MalformedURLException, Exception {
                return connectWithNoTimeout();  //This is the method that takes to long. If this method takes more than 5 seconds, I want to cancel and retry for 3 more times. Then abort completely.
            }
        };

        while (repeatCount < 3){
          Future<Object> future = executor.submit(task);
          try {
              Object result = future.get(5, TimeUnit.SECONDS);
              break;

          } catch (TimeoutException ex) {
            repeatCount++;
            System.out.println( "Timeout Occured");

          } catch (InterruptedException e) {
            System.out.println( " "InterruptedException Occured");
            break; 

          } catch (ExecutionException e) {
              System.out.println( "ExecutionException Occured");
            break;    

          } finally {

              future.cancel(true); // here the method gets canceled. How do I retry it?
          }
        }
        System.out.println( "Connected !!");
        return connectWithNoTimeout();
    }

Acho que você gosta

Origin http://43.154.161.224:23101/article/api/json?id=239078&siteId=1
Recomendado
Clasificación