Package org.openjdk.jmh.annotations
Annotation Type Setup
-
@Target(METHOD) @Retention(RUNTIME) public @interface Setup
Setup marks the fixture method to be run before the benchmark.
Since fixture methods manage the
Statelifecycles,Setupcan only be declared inStateclasses. TheSetupmethod will be executed by a thread which has the access toState, and it is not defined which thread exactly. Note that meansTearDownmay be executed by a different thread, ifStateis shared between the threads.Uses may optionally provide the
Levelat which the fixture method should run.- See Also:
State