ImageRefPoolSnapshotsDiff

data class ImageRefPoolSnapshotsDiff(var totalMemoryConsumptionDiff: Long = 0, var removed: List<String>, var added: List<String>, var modified: List<String>) : Parcelable

difference between two snapshots.

Constructors

Link copied to clipboard
constructor(source: Map<String, Any?>)
constructor(json: JSONObject)
constructor(totalMemoryConsumptionDiff: Long = 0, removed: List<String>, added: List<String>, modified: List<String>)

Properties

Link copied to clipboard

Profiles of ImageRefs that are present in the second snapshot, but not in the first snapshot.

Link copied to clipboard

Profiles of ImageRefs that are present in both snapshots but are different. Profile is considered modified if number of references or memory consumption is different.

Link copied to clipboard

Unique ids of ImageRefs that are not present in the second snapshot and present in the first snapshot.

Link copied to clipboard

Difference between total memory consumption in two snapshots.

Functions

Link copied to clipboard
Link copied to clipboard
fun toJson(config: ToJsonConfiguration = ToJsonConfiguration.default()): JSONObject