love.nuoyan.component_bus.annotation.Action Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of component_bus_annotation Show documentation
Show all versions of component_bus_annotation Show documentation
A modern implementation of the component bus for Android
package love.nuoyan.component_bus.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.METHOD})
public @interface Action {
String actionName();
String[] interceptorName() default {};
}