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

com.sproutsocial.nsq.BalanceStrategy Maven / Gradle / Ivy

There is a newer version: 1.4.8
Show newest version
package com.sproutsocial.nsq;

public interface BalanceStrategy {

    /**
     * @throws NSQException When there are no more available connections.  Should be escalated to the user of the library
     */
    NsqdInstance getNsqdInstance() throws NSQException;

    void connectionClosed(PubConnection closedCon);

    int getFailoverDurationSecs();

    void setFailoverDurationSecs(int failoverDurationSecs);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy