
com.github.edgar615.util.spring.binlog.BinlogStream Maven / Gradle / Ivy
package com.github.edgar615.util.spring.binlog;
/**
* Created by Edgar on 2018/5/22.
*
* @author Edgar Date 2018/5/22
*/
public interface BinlogStream {
void close();
void start();
static BinlogStream create(BinlogProperties binlogProperties,
DataSourceProperties dataSourceProperties) {
return new BinlogStreamImpl(binlogProperties, dataSourceProperties);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy