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

com.github.edgar615.util.spring.binlog.DbDataChangedEvent Maven / Gradle / Ivy

package com.github.edgar615.util.spring.binlog;

import org.springframework.context.ApplicationEvent;

/**
 * Created by Edgar on 2017/10/24.
 *
 * @author Edgar  Date 2017/10/24
 */
public class DbDataChangedEvent extends ApplicationEvent {
  private DbDataChangedEvent(DbChangedData source) {
    super(source);
  }

  public static DbDataChangedEvent create(DbChangedData data) {
    return new DbDataChangedEvent(data);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy