Javolution 6.0.0 java
Parallelizable.java
Go to the documentation of this file.
1 /*
2  * Javolution - Java(TM) Solution for Real-Time and Embedded Systems
3  * Copyright (C) 2012 - Javolution (http://javolution.org/)
4  * All rights reserved.
5  *
6  * Permission to use, copy, modify, and distribute this software is
7  * freely granted, provided that this notice is preserved.
8  */
9 package javolution.lang;
10 
11 import java.lang.annotation.Documented;
12 import java.lang.annotation.ElementType;
13 import java.lang.annotation.Inherited;
14 import java.lang.annotation.Retention;
15 import java.lang.annotation.RetentionPolicy;
16 import java.lang.annotation.Target;
17 
51 @Documented
52 @Inherited
53 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD })
54 @Retention(RetentionPolicy.RUNTIME)
55 public @interface Parallelizable {
56 
61  boolean value() default true;
62 
71  boolean mutexFree() default true;
72 
76  String comment() default "";
77 
78 }
javolution.lang.Parallelizable
Definition: Parallelizable.java:55
javolution.lang.Parallelizable.value
boolean value() default true