engine: graph, resources: Change Watch to use ctx

This is a general port. There are many optimizations and cleanups we can
do now that we have a proper context passed in. That's for a future
patch.
This commit is contained in:
James Shubin
2023-08-07 20:17:32 -04:00
parent 53a878bf61
commit 963393e3d9
37 changed files with 139 additions and 130 deletions

View File

@@ -18,6 +18,7 @@
package resources
import (
"context"
"fmt"
"io/ioutil"
"os/exec"
@@ -76,7 +77,7 @@ func (obj *GroupRes) Close() error {
}
// Watch is the primary listener for this resource and it outputs events.
func (obj *GroupRes) Watch() error {
func (obj *GroupRes) Watch(ctx context.Context) error {
var err error
obj.recWatcher, err = recwatch.NewRecWatcher(groupFile, false)
if err != nil {
@@ -105,7 +106,7 @@ func (obj *GroupRes) Watch() error {
}
send = true
case <-obj.init.DoneCtx.Done(): // closed by the engine to signal shutdown
case <-ctx.Done(): // closed by the engine to signal shutdown
return nil
}