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

com.github.df.restypass.event.EventEmit Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
package com.github.df.restypass.event;

/**
 * event publisher
 * Created by darrenfu on 17-7-23.
 */
public interface EventEmit {

    /**
     * 发送事件.
     *
     * @param    the type parameter
     * @param event the event
     * @param obj   the obj
     */
    default  void emit(String event, T obj) {
        EventBus.emitEvent(event, obj);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy