We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1352905 commit 28f36cfCopy full SHA for 28f36cf
orchestrator/orchestrator.go
@@ -1,6 +1,8 @@
1
package orchestrator
2
3
import (
4
+ "context"
5
+
6
"github.com/strata-io/service-extension/app"
7
"github.com/strata-io/service-extension/cache"
8
"github.com/strata-io/service-extension/idfabric"
@@ -45,4 +47,9 @@ type Orchestrator interface {
45
47
46
48
// App gets the App associated with the Service Extension in use.
49
App() (app.App, error)
50
51
+ // Context gets the context associated with the Service Extension in use.
52
+ // This is an experimental feature and may not be available in all Service Extensions.
53
+ // If context is unavailable, nil will be returned.
54
+ Context() context.Context
55
}
0 commit comments