me.aifaq.commons.lang.annotation.ThreadSafe Maven / Gradle / Ivy
package me.aifaq.commons.lang.annotation;
import java.lang.annotation.*;
/**
* 标明该类或方法是线程安全的
*
* @author Wang Wei [[email protected]]
* @since 15:45 2017/5/22
*/
@Documented
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.CLASS) // The original version used RUNTIME
public @interface ThreadSafe {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy