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

com.github.ljtfreitas.restify.http.client.request.Timeout Maven / Gradle / Ivy

The newest version!
package com.github.ljtfreitas.restify.http.client.request;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

import com.github.ljtfreitas.restify.http.contract.metadata.Metadata;

@Retention(RUNTIME)
@Target({ TYPE, METHOD })
@Metadata
public @interface Timeout {

	long read() default -1;

	long connection() default -1;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy