summaryrefslogtreecommitdiffstats
path: root/lib/bb/event.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bb/event.py')
-rw-r--r--lib/bb/event.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py
index 044c5572f..3f291ec27 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -324,6 +324,25 @@ class ParseProgress(Event):
def __init__(self, current):
self.current = current
+class CacheLoadStarted(Event):
+ """Loading of the dependency cache has begun"""
+ def __init__(self, total):
+ Event.__init__(self)
+ self.total = total
+
+class CacheLoadProgress(Event):
+ """Cache loading progress"""
+ def __init__(self, current):
+ Event.__init__(self)
+ self.current = current
+
+class CacheLoadCompleted(Event):
+ """Cache loading is complete"""
+ def __init__(self, total):
+ Event.__init__(self)
+ self.total = total
+
+
class DepTreeGenerated(Event):
"""
Event when a dependency tree has been generated