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

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