![JAR search and dependency download from the Maven repository](/logo.png)
com.ksyun.ks3.annotation.ThreadSafe Maven / Gradle / Ivy
package com.ksyun.ks3.annotation;
import java.lang.annotation.*;
/**
* Documenting annotation to indicate a class is thread-safe and may be shared among multiple threads.
*
* @see NotThreadSafe
*/
@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.CLASS)
public @interface ThreadSafe {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy