skadistats.clarity.event.InvocationPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clarity Show documentation
Show all versions of clarity Show documentation
Clarity is an open source replay parser for Dota 2, CSGO, CS2 and Deadlock written in Java.
package skadistats.clarity.event;
import skadistats.clarity.processor.runner.Context;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
public interface InvocationPoint {
A getAnnotation();
Class> getProcessorClass();
Method getMethod();
int getArity();
void bind(Context ctx) throws IllegalAccessException;
boolean isInvokedForParameterClasses(Class... classes);
boolean isInvokedForArguments(Object... args);
void invoke(Object... args) throws Throwable;
}