GradleNetworkActivitySubset

constructor(@Json(name = "networkRequestCount") networkRequestCount: Long? = null, @Json(name = "serialNetworkRequestTime") serialNetworkRequestTime: Long? = null, @Json(name = "fileDownloadSize") fileDownloadSize: Long? = null, @Json(name = "fileDownloadCount") fileDownloadCount: Long? = null, @Json(name = "wallClockNetworkRequestTime") wallClockNetworkRequestTime: Long? = null)

Parameters

networkRequestCount

This represents the total count of network requests for this subset of requests.

serialNetworkRequestTime

The duration in milliseconds representing the sum of times for potentially parallel network requests for this subset of requests. It does not reflect wall clock time but offers a rough estimation of network activity.

fileDownloadSize

The total number of bytes downloaded for dependencies from this subset of requests. It accounts only for the bytes of the files (e.g. POMs, JARs) downloaded and not the total network transfer.

fileDownloadCount

The total number of successfully downloaded files from this subset of requests.

wallClockNetworkRequestTime

The estimate in milliseconds representing the wall clock time spent on network requests during the current build for this subset of requests.