Annotation Type AllowThreads


@Documented
@Retention(RUNTIME)
@Target({TYPE,METHOD,ANNOTATION_TYPE})
public @interface AllowThreads
Allows starting and modifying own Threads.
Since:
0.4.0
Version:
1.0.0
Author:
Christian Femers
  • Optional Element Summary

    Optional Elements 
    Modifier and Type Optional Element Description
    int maxActiveCount
    The maximum number of own Threads that are allowed to be active at the same time.
  • Element Details

    • maxActiveCount

      int maxActiveCount
      The maximum number of own Threads that are allowed to be active at the same time.

      Can be used to prevent crashing the test process

      The default value is 1000.

      Default:
      1000