1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.mes.milo.runner.subscription;
|
| import org.eclipse.milo.opcua.sdk.client.subscriptions.ManagedDataItem;
| import org.eclipse.milo.opcua.stack.core.types.builtin.DataValue;
|
| /**
| * 类 SubscriptionCallback 功能描述:<br/>
| *
| * @author mes
| * @version 0.0.1
| * @date 2023/5/8 22:14
| */
| public interface SubscriptionCallback {
|
| void onSubscribe(ManagedDataItem dataItem, DataValue value) throws Exception;
| }
|
|