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

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

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

import java.util.List;
import java.util.Map;

/**
 * Created by Edgar on 2018/5/22.
 *
 * @author Edgar  Date 2018/5/22
 */
public interface DbChangedData {
  String database();

  String table();

  List> data();

  DmlType type();

  static DbChangedData create(String database, String table, DmlType type,
                              List> data) {
    return new DbChangedDataImpl(database, table, type, data);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy