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

me.aifaq.commons.lang.annotation.ThreadSafe Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
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