All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.iteaj.iot.FrameworkComponent Maven / Gradle / Ivy

The newest version!
package com.iteaj.iot;

import com.iteaj.iot.codec.filter.Interceptor;

/**
 * 用来声明和设备对接时用来管理设备的设备组件
 */
public interface FrameworkComponent extends LifeCycle {
    /**
     * 组件功能名称
     * @return
     */
    String getName();

    /**
     * 设备服务说明
     * @return
     */
    String getDesc();

    /**
     * 组件是否已经启用
     * @return
     */
    boolean isStart();

    /**
     * 开启时间
     * @return
     */
    long startTime();

    @Override
    void start(Object config);

    @Override
    void close();

    /**
     * 组件初始化完成
     * 在spring容器启动完成并且netty和框架的组件都加载和初始化完成之后调用
     */
    default void finished() {}

    /**
     * 组件流程过滤器
     * @return
     */
    Interceptor getInterceptor();

    /**
     * 设备相关协议的协议工厂
     * @return
     */
    IotProtocolFactory protocolFactory();

    /**
     * 对应设备的报文Class对象
     * @see SocketMessage
     * @return
     */
    Class getMessageClass();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy