com.netflix.eureka2.interests.IndexRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eureka-core Show documentation
Show all versions of eureka-core Show documentation
eureka-core developed by Netflix
package com.netflix.eureka2.interests;
import com.netflix.eureka2.registry.EurekaRegistry;
import rx.Observable;
/**
* @author Nitesh Kant
*/
public interface IndexRegistry {
Observable> forInterest(Interest interest,
Observable> dataSource,
Index.InitStateHolder initStateHolder);
Observable> forCompositeInterest(MultipleInterests interest, EurekaRegistry registry);
Observable shutdown();
}