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

com.bazaarvoice.emodb.databus.core.MasterFanout Maven / Gradle / Ivy

The newest version!
package com.bazaarvoice.emodb.databus.core;

import com.bazaarvoice.emodb.common.dropwizard.lifecycle.LifeCycleRegistry;
import com.google.inject.Inject;

/** Starts the Database master fanout thread. */
public class MasterFanout {

    @Inject
    public MasterFanout(LifeCycleRegistry lifeCycle, final FanoutManager fanoutManager) {
        lifeCycle.manage(fanoutManager.newMasterFanout());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy