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

hprose.common.Timeout Maven / Gradle / Ivy

/**********************************************************\
|                                                          |
|                          hprose                          |
|                                                          |
| Official WebSite: http://www.hprose.com/                 |
|                   http://www.hprose.org/                 |
|                                                          |
\**********************************************************/
/**********************************************************\
 *                                                        *
 * Timeout.java                                           *
 *                                                        *
 * Timeout Annotation for Java.                           *
 *                                                        *
 * LastModified: Jun 27, 2016                             *
 * Author: Ma Bingyao                   *
 *                                                        *
\**********************************************************/
package hprose.common;

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

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Timeout {
    int value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy