CyclicBarrierTest简单实现测试类

package test;

import lombok.Getter;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;

import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import java.util.concurrent.BrokenBarrierException;
import java.util.concurrent.CyclicBarrier;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * @Program: csdn @ClassName: CyclicBarrierTest
 * @Author: shiyu.
 * @Date: 2022-06-24 17:09
 * @Description: 循环屏障工具
 * @Version: V1.0
 */
@Slf4j
public class CyclicBarrierTest {
	public static final ExecutorService executorService = Executors.newFixedThreadPool(50);
	
	@Getter
	@Setter
	public static class SegmentedTask {
		private Runnable start;
		private Runnable middle;
		private Runnable end;
		
		public SegmentedTask(Runnable start, Runnable middle, Runnable end) {
			this.start = start;
			this.middle = middle;
			this.end = end;
		}
	}
	
	/**
	 * 提交任务
	 *
	 * @param tasks 参数
	 */
	public static void submit(List<SegmentedTask> tasks) {
		CyclicBarrier cyclicBarrier = new CyclicBarrier(tasks.size() + 1);
		try {
			tasks.forEach(task -> executorService.submit(() -> {
				try {
					task.getStart().run();
					cyclicBarrier.await();
					task.getMiddle().run();
					cyclicBarrier.await();
					task.getEnd().run();
					cyclicBarrier.await();
				} catch (InterruptedException | BrokenBarrierException e) {
					e.printStackTrace();
				}
			}));
			cyclicBarrier.await();
			log.info("初始任务已经全部完成");
			cyclicBarrier.await();
			log.info("中间任务已经全部完成");
			cyclicBarrier.await();
			log.info("最终任务已经全部完成");
		} catch (InterruptedException | BrokenBarrierException e) {
			e.printStackTrace();
		}
	}
	
	public static void destroy() {
		log.info("摧毁线程池");
		executorService.shutdown();
	}
	
	public static void main(String[] args) throws InterruptedException {
		Random random = new Random();
		List<SegmentedTask> tasks = new ArrayList<>();
		for (int i = 1; i < 11; i++) {
			int finalI = i;
			tasks.add(new SegmentedTask(() -> {
				try {
					Thread.sleep(random.nextInt(1000));
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
				log.info(Thread.currentThread() + ":" + MessageFormat.format("第{0}军团已经开始推进!", finalI));
			}, () -> {
				try {
					Thread.sleep(random.nextInt(2000));
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
				log.info(Thread.currentThread() + ":" + MessageFormat.format("第{0}军团已经正在进攻!", finalI));
			}, () -> {
				try {
					Thread.sleep(random.nextInt(3000));
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
				log.info(Thread.currentThread() + ":" + MessageFormat.format("第{0}军团已经攻陷阵地!", finalI));
			}));
		}
		CyclicBarrierTest.submit(tasks);
		Thread.sleep(10000);
		CyclicBarrierTest.destroy();
	}
	
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值