Added Continue bool to track whether the execution should be terminated

This commit is contained in:
Alfred Kamanda 2024-09-12 23:52:35 +03:00
parent 5e4e6a21a0
commit 762f90adf6
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703
2 changed files with 2 additions and 1 deletions

View File

@ -78,7 +78,7 @@ func(f *BaseSessionHandler) Process(rqs RequestSession) (RequestSession, error)
return rqs, err return rqs, err
} }
_ = r rqs.Continue = r
return rqs, nil return rqs, nil
} }

View File

@ -34,6 +34,7 @@ type RequestSession struct {
Input []byte Input []byte
Storage storage.Storage Storage storage.Storage
Writer io.Writer Writer io.Writer
Continue bool
} }
type engineMaker func(cfg engine.Config, rs resource.Resource, pr *persist.Persister) engine.Engine type engineMaker func(cfg engine.Config, rs resource.Resource, pr *persist.Persister) engine.Engine