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

com.ksyun.ks3.annotation.NotThreadSafe Maven / Gradle / Ivy


package com.ksyun.ks3.annotation;


import java.lang.annotation.*;

/**
 * Documenting annotation to indicate a class is not thread-safe and should not be used in a multi-threaded context.
 *
 * @see ThreadSafe
 */
@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.CLASS)
public @interface NotThreadSafe {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy