diff options
Diffstat (limited to 'lib/bb/event.py')
-rw-r--r-- | lib/bb/event.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py index a3288b61..7d47edb9 100644 --- a/lib/bb/event.py +++ b/lib/bb/event.py @@ -206,13 +206,17 @@ def getName(e): class ConfigParsed(Event): """Configuration Parsing Complete""" -class RecipeParsed(Event): - """ Recipe Parsing Complete """ - +class RecipeEvent(Event): def __init__(self, fn): self.fn = fn Event.__init__(self) +class RecipePreFinalise(RecipeEvent): + """ Recipe Parsing Complete but not yet finialised""" + +class RecipeParsed(RecipeEvent): + """ Recipe Parsing Complete """ + class StampUpdate(Event): """Trigger for any adjustment of the stamp files to happen""" |