spring-framework / org.springframework.cache.interceptor / CompositeCacheOperationSource

CompositeCacheOperationSource

open class CompositeCacheOperationSource : CacheOperationSource, Serializable

Composite CacheOperationSource implementation that iterates over a given array of CacheOperationSource instances.

Author
Costin Leau

Since
3.1

Constructors

<init>

CompositeCacheOperationSource(vararg cacheOperationSources: CacheOperationSource)

Create a new CompositeCacheOperationSource for the given sources.

Functions

getCacheOperationSources

fun getCacheOperationSources(): Array<CacheOperationSource>

Return the CacheOperationSource instances that this CompositeCacheOperationSource combines.

getCacheOperations

open fun getCacheOperations(method: Method, targetClass: Class<*>): MutableCollection<CacheOperation>