com.netflix.eureka2.interests.Interest 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;
/**
* Eureka provides an interest based subscription model to subscribe for changes to eureka's registry, either locally
* (directly with a local registry on client/server) or remote (remote server).
* This class identifies an interest.
*
* @author Nitesh Kant
*/
public abstract class Interest {
public enum Operator {Equals, Like}
public abstract boolean matches(T data);
}