diff options
Diffstat (limited to 'events.go')
-rw-r--r-- | events.go | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/events.go b/events.go deleted file mode 100644 index 6159343..0000000 --- a/events.go +++ /dev/null @@ -1,22 +0,0 @@ -//go:generate stringer -type=Event -package rutina - -// Event represents lifecycle events -type Event int - -const ( - EventRoutineStart Event = iota - EventRoutineStop - EventRoutineComplete - EventRoutineError - EventAppStop - EventAppComplete - EventAppError -) - -// Hook is function that calls when event fired -// Params: -// ev Event - fired event -// r *Rutina - pointer to rutina -// rid int - ID of routine if present, 0 - otherwise -type Hook func(ev Event, r *Rutina, rid int) error |