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

com.github.ltsopensource.remoting.RemotingProcessor Maven / Gradle / Ivy

package com.github.ltsopensource.remoting;

import com.github.ltsopensource.remoting.exception.RemotingCommandException;
import com.github.ltsopensource.remoting.protocol.RemotingCommand;

/**
 * 接收请求处理器,服务器与客户端通用
 */
public interface RemotingProcessor {
    public RemotingCommand processRequest(Channel channel, RemotingCommand request)
            throws RemotingCommandException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy