mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-06 14:07:49 +08:00
6 lines
122 B
Java
6 lines
122 B
Java
package com.genersoft.iot.vmp.common;
|
|
|
|
public interface GeneralCallback<T>{
|
|
void run(int code, String msg, T data);
|
|
}
|