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

com.bazaarvoice.emodb.databus.repl.ReplicationSource Maven / Gradle / Ivy

There is a newer version: 6.5.190
Show newest version
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