GradleDependencyCaching

data class GradleDependencyCaching(@Json(name = "downloadedFileCount") val downloadedFileCount: Long, @Json(name = "downloadedFileSize") val downloadedFileSize: Long, @Json(name = "cachedFileCount") val cachedFileCount: Long, @Json(name = "cachedFileSize") val cachedFileSize: Long)

Summary of dependency files resolved by source for a Gradle build.

Parameters

downloadedFileCount

The number of resolved dependency files downloaded from remote repositories.

downloadedFileSize

The size in bytes of resolved dependency files downloaded from remote repositories.

cachedFileCount

The number of resolved dependency files retrieved from local cache.

cachedFileSize

The size in bytes of resolved dependency files retrieved from local cache.

Constructors

Link copied to clipboard
constructor(@Json(name = "downloadedFileCount") downloadedFileCount: Long, @Json(name = "downloadedFileSize") downloadedFileSize: Long, @Json(name = "cachedFileCount") cachedFileCount: Long, @Json(name = "cachedFileSize") cachedFileSize: Long)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard