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

com.netflix.eureka2.interests.Interest Maven / Gradle / Ivy

There is a newer version: 2.0.0-DP4
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy