package com.mes.connect.IndustrialInterface; import java.io.IOException; /** * 工业通信统一接口 - 服务器模式 */ public interface IndustrialServer extends AutoCloseable { void start() throws IOException; void stop(); boolean isRunning(); void setDataHandler(IndustrialDataHandler handler); @Override void close() throws IOException; }