真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么使用Java編寫超時工具類

這篇文章主要介紹“怎么使用Java編寫超時工具類”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強(qiáng),希望這篇“怎么使用Java編寫超時工具類”文章能幫助大家解決問題。

創(chuàng)新互聯(lián)專注于西城企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,購物商城網(wǎng)站建設(shè)。西城網(wǎng)站建設(shè)公司,為西城等地區(qū)提供建站服務(wù)。全流程按需設(shè)計,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

1、說明

java已經(jīng)為我們提供了解決辦法。jdk1.5帶來的并發(fā)庫Future類可以滿足這一需求。Future類中重要的方法有g(shù)et()和cancel()。get()獲取數(shù)據(jù)對象,如果數(shù)據(jù)沒有加載,則在獲取數(shù)據(jù)之前堵塞,cancel()取消數(shù)據(jù)加載。另一個get(timeout)操作表明,如果timeout時間內(nèi)沒有得到,就會失敗回來,不會堵塞。

利用泛型和函數(shù)式接口編寫一個工具類,可以讓超時處理更方便,而不用到處寫代碼。

2、實例

/**
 * TimeoutUtil 
 *  * @author lys  * @date 2021/2/25  */ @Slf4j @Component @NoArgsConstructor public class TimeoutUtil {       private ExecutorService executorService;       public TimeoutUtil(ExecutorService executorService) {         this.executorService = executorService;     }       /**      * 有超時限制的方法      *      * @param bizSupplier 業(yè)務(wù)函數(shù)      * @param timeout     超時時間,ms      * @return 返回值      */     public  Result doWithTimeLimit(Supplier bizSupplier, int timeout) {         return doWithTimeLimit(bizSupplier, null, timeout);     }       /**      * 有超時限制的方法      *      * @param bizSupplier   業(yè)務(wù)函數(shù)      * @param defaultResult 默認(rèn)值      * @param timeout       超時時間,ms      * @return 返回值      */     public  Result doWithTimeLimit(Supplier bizSupplier, R defaultResult, int timeout) {           R result;         String errMsg = "Null value";         FutureTask futureTask = new FutureTask<>(bizSupplier::get);         executorService.execute(futureTask);         try {             result = futureTask.get(timeout, TimeUnit.MILLISECONDS);         } catch (InterruptedException | ExecutionException | TimeoutException e) {             errMsg = String.format("doWithTimeLimit執(zhí)行超過%d毫秒,強(qiáng)制結(jié)束", timeout);             log.error(errMsg, e);             futureTask.cancel(true);             result = defaultResult;         }         return of(result, errMsg);     }       /**      * 隨機(jī)耗時的測試方法      */     private String randomSpentTime() {         Random random = new Random();         int time = (random.nextInt(10) + 1) * 1000;         log.info("預(yù)計randomSpentTime方法執(zhí)行將耗時: " + time + "毫秒");         try {             Thread.sleep(time);         } catch (Exception e) {         }         return "randomSpentTime --> " + time;     }       public static void main(String[] args) throws Exception {         ExecutorService executorService = new ThreadPoolExecutor(1, 1,                 0L, TimeUnit.MILLISECONDS,                 new LinkedBlockingQueue(),                 runnable -> {                     Thread thread = new Thread(runnable);                     // 以守護(hù)線程方式啟動                     thread.setDaemon(true);                     return thread;                 });         TimeoutUtil timeoutUtil = new TimeoutUtil(executorService);         for (int i = 1; i <= 10; i++) {             log.info("\n=============第{}次超時測試=============", i);             Thread.sleep(6000);             long start = System.currentTimeMillis();             String result = timeoutUtil.doWithTimeLimit(() -> timeoutUtil.randomSpentTime(), 5000).getOrElse("默認(rèn)");             log.info("doWithTimeLimit方法實際耗時{}毫秒,結(jié)果:{}", System.currentTimeMillis() - start, result);         }     }   }

關(guān)于“怎么使用Java編寫超時工具類”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。


本文標(biāo)題:怎么使用Java編寫超時工具類
URL地址:http://weahome.cn/article/jeccpg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部