blob: 14aa223131f836d2613582360d2bcc355fa71172 [file] [log] [blame]
package org.eclipse.basyx.vab.protocol.opcua.server;
import java.util.concurrent.CompletableFuture;
import org.eclipse.milo.opcua.sdk.client.OpcUaClient;
public interface BaSyxOpcUaClient {
void run(OpcUaClient client, CompletableFuture<OpcUaClient> future) throws Exception;
}