Build Cache Service Factory
Factory interface to be provided by build cache service implementations.
To be able to use a BuildCacheService
, the factory that implements this interface and the configuration type (BuildCache) must be registered with the org.gradle.caching.configuration.BuildCacheConfiguration.
In settings.gradle:
buildCache {
// Register custom build cache implementation
registerBuildCacheService(CustomBuildCache, CustomBuildCacheFactory)
remote(CustomBuildCache) {
// configure custom build cache.
}
}
Content copied to clipboard
Since
3.5
Parameters
<T>
the type of build cache configuration this factory can handle.
Types
Functions
Link copied to clipboard
abstract fun createBuildCacheService(configuration: T, describer: BuildCacheServiceFactory.Describer): BuildCacheService
Creates a build cache service from the given configuration.