Package io.quarkus.cache.runtime
Class UndefinedCacheKeyGenerator
- java.lang.Object
-
- io.quarkus.cache.runtime.UndefinedCacheKeyGenerator
-
- All Implemented Interfaces:
CacheKeyGenerator
public class UndefinedCacheKeyGenerator extends Object implements CacheKeyGenerator
ThisCacheKeyGeneratorimplementation is ignored byCacheInterceptorwhen a cache key is computed.
-
-
Constructor Summary
Constructors Constructor Description UndefinedCacheKeyGenerator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectgenerate(Method method, Object... methodParams)Generates a cache key.
-
-
-
Method Detail
-
generate
public Object generate(Method method, Object... methodParams)
Description copied from interface:CacheKeyGeneratorGenerates a cache key.- Specified by:
generatein interfaceCacheKeyGenerator- Parameters:
method- the cached methodmethodParams- the method parameters- Returns:
- cache key
-
-