Newer
Older
wellsink / src / main / java / org / well / well / base / IResponse.java
casic_zt on 14 Sep 2022 354 bytes first commit
package org.well.well.base;

/**
 * Created by lenovo on 2018/1/3.
 */
public interface IResponse {


    /**策略模式,不同的相应调用不同的处理方法
     * 进行入库操作,查找要响应的命令,并返回给web服务信息
     * @param context 处理时候,会需要通道信息
     */
    void process(String context);

}