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

com.datastax.util.concurrency.ThreadSafe Maven / Gradle / Ivy

package com.datastax.util.concurrency;


import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * The presence of this annotation indicates that the author believes the class to be thread-safe. As such, there should
 * be no sequence of accessing the public methods or fields that could put an instance of this class into an invalid
 * state, irrespective of any rearrangement of those operations by the Java Runtime and without introducing any
 * requirements for synchronization or coordination by the caller/accessor.
 */
@Documented
@Target(TYPE)
@Retention(RUNTIME)
public @interface ThreadSafe {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy