host.anzo.core.startup.StartupRun Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-core Show documentation
Show all versions of commons-core Show documentation
Commons library to make me happy.
package host.anzo.core.startup;
import host.anzo.classindex.IndexAnnotated;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author ANZO
* @since 9/27/2018
*/
@IndexAnnotated
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface StartupRun {
String after() default "";
String before() default "";
boolean isAsync() default false;
}