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

netflix.ocelli.FailureDetectorFactory Maven / Gradle / Ivy

There is a newer version: 0.1.0-rc.2
Show newest version
package netflix.ocelli;

import rx.Observable;
import rx.functions.Func1;

/**
 * Contract for a failure detector.  A subscription to the failure detector
 * is made of each client instance in a load balancer.  The returned Observable
 * will emit an exception for each failure. A subscription is likely to persist
 * for the entire lifetime of the client.
 * 
 * @author elandau
 *
 * @param 
 */
public interface FailureDetectorFactory extends Func1>{
    @Override
    public Observable call(C client);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy