netflix.ocelli.executor.Executor Maven / Gradle / Ivy
package netflix.ocelli.executor;
import rx.Observable;
import rx.functions.Func1;
/**
* Higher level API for calling the load balancer as a mapping of
* Request -> Observable(Response). Note that this abstraction completely
* removed knowledge of the client type and only deals with request/response
*
* @author elandau
*
* @param
*/
public interface Executor extends Func1> {
}