com.jladder.web.EventBus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jladder Show documentation
Show all versions of jladder Show documentation
with java,a low code SDK,通用低代码开发包
package com.jladder.web;
import com.jladder.lang.func.Func3;
import java.util.HashMap;
import java.util.Map;
/**
* 事件总线
*/
public class EventBus {
/**
* 登录事件
*/
public static final int Event_Login=1002;
/**
* 更新配置事件
*/
public static final int Event_UpdateConfig=2001;
/**
* 登录事件
*/
public static final int Event_Seq=12;
private static final Map> events=new HashMap>();
/**
* 放置事件处理
* @param code 事件代码
* @param fun 回调函数
*/
public static void put(int code,Func3