com.github.houbb.rpc.client.proxy.RemoteInvokeService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rpc-client Show documentation
Show all versions of rpc-client Show documentation
The client module of rpc framework.
The newest version!
package com.github.houbb.rpc.client.proxy;
/**
* 远程调用服务
* @author binbin.hou
* @since 0.1.1
*/
public interface RemoteInvokeService {
/**
* 远程调用
* @param context 远程调用上下文
* @return 最终调用结果
* @since 0.1.1
*/
Object remoteInvoke(final RemoteInvokeContext context);
}