com.codingapi.springboot.framework.event.EventPusher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springboot-starter Show documentation
Show all versions of springboot-starter Show documentation
springboot-starter project for Spring Boot
package com.codingapi.springboot.framework.event;
/**
* Even推送助手
*/
public class EventPusher {
public static void push(IEvent event) {
DomainEventContext.getInstance().push(event);
}
}