run.halo.app.plugin.event.PluginStartedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
API of halo project, connecting by other projects.
The newest version!
package run.halo.app.plugin.event;
import org.springframework.context.ApplicationEvent;
/**
* The event that is published when a plugin is really started, and is only for plugin internal use.
*
* @author johnniang
* @since 2.17.0
*/
public class PluginStartedEvent extends ApplicationEvent {
public PluginStartedEvent(Object source) {
super(source);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy