22 lines
573 B
Java
22 lines
573 B
Java
package o;
|
|
|
|
import java.lang.annotation.Documented;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
import org.greenrobot.eventbus.ThreadMode;
|
|
|
|
@Target({ElementType.METHOD})
|
|
@Documented
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
/* renamed from: o.gmx, reason: case insensitive filesystem */
|
|
/* loaded from: classes.dex */
|
|
public @interface InterfaceC15309gmx {
|
|
boolean b() default false;
|
|
|
|
int c() default 0;
|
|
|
|
ThreadMode e() default ThreadMode.POSTING;
|
|
}
|