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

io.github.kangjianqun.fast.common.log.event.SysLogEvent Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package io.github.kangjianqun.fast.common.log.event;

import org.springframework.context.ApplicationEvent;

import java.time.Clock;

/**
 * 日志事件
 *
 * @author 康建群
 */
public class SysLogEvent extends ApplicationEvent {

    public SysLogEvent(ASysLog source) {
        super(source);
    }

    public SysLogEvent(ASysLog source, Clock clock) {
        super(source, clock);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy