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

cn.ishow.starter.rpc.annotation.Options Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package cn.ishow.starter.rpc.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 配置方法远程请求超时配置
 *
 * @author bucheng
 */
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Options {
    /**
     * 执行远程读最多等待时间
     *
     * @return
     */
    long readTimeoutMills() default 5000;

    /**
     * 执行远程建立连接最多等待时间
     *
     * @return
     */
    long connectTimeoutMills() default 3000;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy