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

cc.owoo.godpen.network.http.MessageRead Maven / Gradle / Ivy

package cc.owoo.godpen.network.http;

import java.io.IOException;
import java.io.InputStream;

/**
 * 报文读取接口
 */
public interface MessageRead {
    /**
     * 读取报文数据
     *
     * @param input 输入流
     */
    void read(InputStream input) throws IOException;

    /**
     * 解析协议头
     *
     * @param string 需要解析的内容
     * @return 是否解析成功
     */
    boolean analysisAgreement(String string);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy