From a3e257d856b98a5b7011096fa2284b613569d5ed Mon Sep 17 00:00:00 2001 From: liujing Date: Fri, 6 Aug 2021 17:24:49 +0800 Subject: [PATCH] =?UTF-8?q?[add]=20=E6=B7=BB=E5=8A=A0=E5=B7=A5=E6=8E=A7?= =?UTF-8?q?=E6=9C=BA=E5=BB=B6=E6=97=B6=E7=9B=91=E5=90=AC=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mogo/module/check/api/ICheckListener.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 modules/mogo-module-check/src/main/java/com/mogo/module/check/api/ICheckListener.java diff --git a/modules/mogo-module-check/src/main/java/com/mogo/module/check/api/ICheckListener.java b/modules/mogo-module-check/src/main/java/com/mogo/module/check/api/ICheckListener.java new file mode 100644 index 0000000000..171853046c --- /dev/null +++ b/modules/mogo-module-check/src/main/java/com/mogo/module/check/api/ICheckListener.java @@ -0,0 +1,19 @@ +package com.mogo.module.check.api; + +/** + * @author liujing + * @description 描述 + * @since: 8/6/21 + */ +public interface ICheckListener { + + /** + * 工控机->鹰眼定位数据延时 + */ + void getAutoLocationTimeCallbackDelayed(long time); + + /** + * 工控机->鹰眼识别数据延时 + */ + void getAutoDataCallbackDelayed(long time); +}