Class BuildCacheLocalStoreStarted_1_0

java.lang.Object
com.gradle.scan.eventmodel.gradle.BuildCacheLocalStoreStarted_1_0
All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData

@GradleVersion(since="8.6") @PluginVersion(since="3.17") public class BuildCacheLocalStoreStarted_1_0 extends Object implements com.gradle.scan.eventmodel.EventData
An EventData that is published when a build cache remote store artifact operation has started.

Zero or more BuildCacheLocalStoreStarted_1_0 events may be published.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final long
    The number of bytes of the cache artifact to store.
    final String
    The cache key that identifies the artifact in the build cache.
    final long
    The id of the store activity.
    final long
    The id of the work unit whose artifact is attempted to be loaded from the remote cache.
  • Constructor Summary

    Constructors
    Constructor
    Description
    BuildCacheLocalStoreStarted_1_0(long workId, long id, String cacheKey, long archiveSize)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • workId

      public final long workId
      The id of the work unit whose artifact is attempted to be loaded from the remote cache. References TaskIdentity_1_0.id or TransformExecutionStarted_1_0.id.
    • id

      public final long id
      The id of the store activity.
    • cacheKey

      public final String cacheKey
      The cache key that identifies the artifact in the build cache.
    • archiveSize

      public final long archiveSize
      The number of bytes of the cache artifact to store.
  • Constructor Details

    • BuildCacheLocalStoreStarted_1_0

      public BuildCacheLocalStoreStarted_1_0(long workId, long id, String cacheKey, long archiveSize)
  • Method Details