多线程工具类,websocket

This commit is contained in:
18792927508
2023-11-25 18:15:40 +08:00
parent aef4ae747e
commit dbefa0b24e
9 changed files with 775 additions and 2 deletions
@@ -0,0 +1,13 @@
package com.ruoyi.common.annotation;
/**
* 一个参数、没有返回
* @author wangqiong
*/
@FunctionalInterface
public interface VoidFunction<T> {
/**
* 有一个参数
* @param param
*/
void apply(T param);
}