GradleConfigurationCacheResult

constructor(@Json(name = "outcome") outcome: GradleConfigurationCacheResult.Outcome, @Json(name = "dependencyResolutionDuration") dependencyResolutionDuration: Long, @Json(name = "entrySize") entrySize: Long? = null, @Json(name = "checkFingerprintDuration") checkFingerprintDuration: Long? = null, @Json(name = "store") store: GradleConfigurationCacheStoreResult? = null, @Json(name = "load") load: GradleConfigurationCacheLoadResult? = null, @Json(name = "missReasons") missReasons: List<String>? = null)

Parameters

outcome

The outcome of the configuration cache operation: * HIT - There was a configuration cache hit. * MISS - There was a configuration cache miss. * FAILED - There was a configuration cache related failure.

dependencyResolutionDuration

The duration of dependency resolution during configuration caching.

entrySize

The size of the configuration entry in bytes. null in case of certain failures or if the entry size was not captured.

checkFingerprintDuration

The duration of checking the configuration cache fingerprint. null in case no configuration cache fingerprint check was captured.

store
load
missReasons

The reasons why the configuration cache cannot be reused. null if there was no configuration cache hit.