com.bazaarvoice.emodb.databus.core.FanoutManager Maven / Gradle / Ivy
package com.bazaarvoice.emodb.databus.core;
import com.bazaarvoice.emodb.databus.repl.ReplicationSource;
import com.bazaarvoice.emodb.datacenter.api.DataCenter;
import com.google.common.util.concurrent.Service;
public interface FanoutManager {
/** Starts the main fanout thread that copies from __system_bus:master to individual subscriptions. */
Service newMasterFanout();
/** Starts polling remote data centers and copying events to local individual subscriptions. */
Service newInboundReplicationFanout(DataCenter dataCenter, ReplicationSource replicationSource);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy