All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.zhengframework.event.EventDispatcher Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.github.zhengframework.event;

import java.lang.reflect.Method;

@SuppressWarnings("UnusedReturnValue")
public interface EventDispatcher {

   EventRegistration registerListener(
      Class eventType, EventListener eventListener);

  EventRegistration registerListener(EventListener eventListener);

  EventRegistration registerListener(Object instance, Method method,
      Class acceptedType);

  void publishEvent(Event event);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy