提交 f04e742f 编写于 作者: L Li Qiang 提交者: agapple

#1897 , fix DummyEventStore implements new method (#1932)

上级 c81034dd
......@@ -23,6 +23,10 @@ public class DummyEventStore implements CanalEventStore<Event> {
}
public void ack(Position position, Long seqId) throws CanalStoreException {
}
public Events get(Position start, int batchSize) throws InterruptedException, CanalStoreException {
return null;
}
......
......@@ -15,6 +15,10 @@ public class DummyEventStore implements CanalEventStore<Event> {
}
public void ack(Position position, Long seqId) throws CanalStoreException {
}
public Events get(Position start, int batchSize) throws InterruptedException, CanalStoreException {
return null;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册