top.fullj.eventbus.DeadEvent Maven / Gradle / Ivy
package top.fullj.eventbus;
/**
* @author bruce.wu
* @since 2022/2/25 10:23
*/
public class DeadEvent {
public final Object source;
public final Object event;
public DeadEvent(Object source, Object event) {
this.source = source;
this.event = event;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy