1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.sandu.ximon.admin.utils;
|
| import lombok.AllArgsConstructor;
| import lombok.Data;
|
| import java.util.concurrent.CountDownLatch;
|
| /**
| * @author LiuHaoNan
| * @date 2022/11/10
| */
| @Data
| @AllArgsConstructor
| public class CountDownResultUtil {
|
| private String key;
|
| private CountDownLatch countDownLatch;
| }
|
|