com.bazaarvoice.emodb.databus.repl.ReplicationSource Maven / Gradle / Ivy
package com.bazaarvoice.emodb.databus.repl;
import java.util.Collection;
import java.util.List;
/**
* Fetch/acknowledge interface for consuming a stream of events to be replicated.
*/
public interface ReplicationSource {
List get(String channel, int limit);
void delete(String channel, Collection eventIds);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy