Package org.infinispan.server.core
Interface QueryFacade
-
public interface QueryFacade
Query facade SPI. This is not meant to be implemented by regular users. At most one implmentation can exist in server's classpath.- Since:
- 9.0
- Author:
- Galder ZamarreƱo, wburns
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
query(AdvancedCache<?,?> cache, byte[] query)
Execute a query against a cache.
-
-
-
Method Detail
-
query
byte[] query(AdvancedCache<?,?> cache, byte[] query)
Execute a query against a cache.- Parameters:
cache
- the cache to execute the queryquery
- the query, serialized using protobuf- Returns:
- the results, serialized using protobuf
-
-