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

top.fullj.eventbus.DeadEvent Maven / Gradle / Ivy

There is a newer version: 1.8.2
Show newest version
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