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

cn.icanci.loopstack.rec.engine.script.client.Client Maven / Gradle / Ivy

The newest version!
package cn.icanci.loopstack.rec.engine.script.client;

import cn.hutool.http.Method;

import java.util.Map;
import java.util.concurrent.TimeUnit;

/**
 * @author icanci
 * @since 1.0 Created in 2022/11/14 22:14
 */
public interface Client {
    /**
     * 远程调用
     *
     * @param request http 请求
     * @param clazz   应答类型
     * @param      应答类型
     * @return 应答数据
     * @throws RemoteException 远程调用异常
     */
     V call(RpcRequest request, Class clazz) throws RemoteException;

    class RpcRequest {
        /**
         * 请求路径
         */
        private String              url;
        /**
         * 请求对象
         */
        private Object              body;
        /**
         * 请求头
         */
        private Map headers;
        /**
         * 执行的方法
         */
        private Method              method;
        /**
         * 请求超时时间
         */
        private long                readTimeOut;
        /**
         * 超时时间单位
         */
        private TimeUnit            timeUnit;
        /**
         * 重试次数
         */
        private int                 retry;

        public RpcRequest(String url, Object body, Map headers, Method method, long readTimeOut, TimeUnit timeUnit, int retry) {
            this.url = url;
            this.body = body;
            this.headers = headers;
            this.method = method;
            this.readTimeOut = readTimeOut;
            this.timeUnit = timeUnit;
            this.retry = retry;
        }

        public String getUrl() {
            return url;
        }

        public void setUrl(String url) {
            this.url = url;
        }

        public Object getBody() {
            return body;
        }

        public void setBody(Object body) {
            this.body = body;
        }

        public Map getHeaders() {
            return headers;
        }

        public void setHeaders(Map headers) {
            this.headers = headers;
        }

        public Method getMethod() {
            return method;
        }

        public void setMethod(Method method) {
            this.method = method;
        }

        public long getReadTimeOut() {
            return readTimeOut;
        }

        public void setReadTimeOut(long readTimeOut) {
            this.readTimeOut = readTimeOut;
        }

        public TimeUnit getTimeUnit() {
            return timeUnit;
        }

        public void setTimeUnit(TimeUnit timeUnit) {
            this.timeUnit = timeUnit;
        }

        public int getRetry() {
            return retry;
        }

        public void setRetry(int retry) {
            this.retry = retry;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy