Package io.quarkus.infinispan.client
Annotation Type CacheInvalidateAll
-
@InterceptorBinding @Target({TYPE,METHOD}) @Retention(RUNTIME) @Repeatable(List.class) public @interface CacheInvalidateAll
When a method annotated withCacheInvalidateAllis invoked, Quarkus will remove all entries from the Infinispan cache.This annotation can be combined with
CacheResultannotation on a single method. Caching operations will always be executed in the same order:CacheInvalidateAllfirst, thenCacheInvalidateand finallyCacheResult.
-
-
Element Detail
-
cacheName
String cacheName
The name of the cache.
-
-