engine: resources, graph: Change the Close method to Cleanup

This also changes a few similarly named methods. Clearer what it's doing
in terms of cleanup vs. causing some action.
This commit is contained in:
James Shubin
2023-08-08 00:19:51 -04:00
parent 63f05e12ca
commit 514927c0b3
39 changed files with 125 additions and 123 deletions

View File

@@ -132,10 +132,10 @@ func (obj *NspawnRes) Init(init *engine.Init) error {
return obj.svc.Init(init)
}
// Close is run by the engine to clean up after the resource is done.
func (obj *NspawnRes) Close() error {
// Cleanup is run by the engine to clean up after the resource is done.
func (obj *NspawnRes) Cleanup() error {
if obj.svc != nil {
return obj.svc.Close()
return obj.svc.Cleanup()
}
return nil
}