All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dahuatech.hutool.core.thread.ConcurrencyTester Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.hutool.core.thread;

import com.dahuatech.hutool.core.date.TimeInterval;

/**
 * 高并发测试工具类
 *
 * 
 * ps:
 * //模拟1000个线程并发
 * ConcurrencyTester ct = new ConcurrencyTester(1000);
 * ct.test(() -> {
 *      // 需要并发测试的业务代码
 * });
 * 
* * @author kwer */ public class ConcurrencyTester { private SyncFinisher sf; private TimeInterval timeInterval; private long interval; public ConcurrencyTester(int threadSize) { this.sf = new SyncFinisher(threadSize); this.timeInterval = new TimeInterval(); } /** * 执行测试 * * @param runnable 要测试的内容 * @return this */ public ConcurrencyTester test(Runnable runnable) { timeInterval.start(); this.sf // .addRepeatWorker(runnable) // .setBeginAtSameTime(true) // 同时开始 .start(); this.interval = timeInterval.interval(); return this; } /** * 获取执行时间 * * @return 执行时间,单位毫秒 */ public long getInterval() { return this.interval; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy