You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
469 B
18 lines
469 B
package com.bfd.upload.utils;
|
|
|
|
import java.util.Map;
|
|
import java.util.concurrent.LinkedBlockingDeque;
|
|
|
|
/**
|
|
* @author:jinming
|
|
* @className:QueueUtil
|
|
* @version:1.0
|
|
* @description:
|
|
* @Date:2023/7/13 15:00
|
|
*/
|
|
public class QueueUtil {
|
|
|
|
public static LinkedBlockingDeque<Map<String, Object>> taskQueue = new LinkedBlockingDeque<Map<String, Object>>();
|
|
|
|
public static LinkedBlockingDeque<String> sendQueue = new LinkedBlockingDeque<String>();
|
|
}
|