org.modeshape.common.annotation
Annotation Type NotThreadSafe


@Documented
@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface NotThreadSafe

Copyright (c) 2005 Brian Goetz and Tim Peierls.
Released under the Creative Commons Attribution License
(http://creativecommons.org/licenses/by/2.5)
Official home: http://www.jcip.net
Adopted from Java Concurrency in Practice.

This annotation documents the class as not being thread-safe, meaning the caller is expected to properly handle and guard all concurrent operations on an instance.

See Also:
ThreadSafe



Copyright © 2008-2011 JBoss, a division of Red Hat. All Rights Reserved.