aboutsummaryrefslogtreecommitdiffstats
path: root/cache/repo_cache.go
diff options
context:
space:
mode:
Diffstat (limited to 'cache/repo_cache.go')
-rw-r--r--cache/repo_cache.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/cache/repo_cache.go b/cache/repo_cache.go
index 9e45d1f1..19b6e266 100644
--- a/cache/repo_cache.go
+++ b/cache/repo_cache.go
@@ -210,10 +210,15 @@ type BuildEventType int
const (
_ BuildEventType = iota
+ // BuildEventCacheIsBuilt signal that the cache is being built (aka, not skipped)
BuildEventCacheIsBuilt
+ // BuildEventRemoveLock signal that an old repo lock has been cleaned
BuildEventRemoveLock
+ // BuildEventStarted signal the beginning of a cache build for an entity
BuildEventStarted
+ // BuildEventProgress signal progress in the cache building for an entity
BuildEventProgress
+ // BuildEventFinished signal the end of a cache build for an entity
BuildEventFinished
)