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

colesico.framework.rpc.clientapi.RpcClient Maven / Gradle / Ivy

The newest version!
package colesico.framework.rpc.clientapi;

import colesico.framework.rpc.teleapi.RpcRequest;
import colesico.framework.rpc.teleapi.RpcResponse;

/**
 * RPC client API used in autogenerated RPC clients to call remote services
 */
public interface RpcClient {

    String REQUEST_PARAM = "request";
    String CALL_METHOD = "call";

    /**
     * Adds extra parameters and call target
     */
     RpcResponse call(String rpcNamespace, String rpcApiName, String rpcMethodName, RpcRequest request, Class> responseType);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy