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

org.infinispan.query.api.continuous.ContinuousQuery Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.query.api.continuous;

import org.infinispan.query.dsl.Query;

import java.util.List;

/**
 * A container of continuous query listeners for a cache.
 * 

Implementations are not expected to be threadsafe. * * @author [email protected] * @since 8.2 */ public interface ContinuousQuery { void addContinuousQueryListener(Query query, ContinuousQueryListener listener); void removeContinuousQueryListener(ContinuousQueryListener listener); List> getListeners(); void removeAllListeners(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy