summaryrefslogtreecommitdiff
path: root/plugins/factory/app_provider.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/factory/app_provider.go')
-rw-r--r--plugins/factory/app_provider.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/factory/app_provider.go b/plugins/factory/app_provider.go
new file mode 100644
index 00000000..58fc686c
--- /dev/null
+++ b/plugins/factory/app_provider.go
@@ -0,0 +1,17 @@
+package factory
+
+import (
+ "os/exec"
+
+ "github.com/temporalio/roadrunner-temporal/roadrunner"
+)
+
+type Env map[string]string
+
+type Spawner interface {
+ // CmdFactory create new command factory with given env variables.
+ NewCmd(env Env) (func() *exec.Cmd, error)
+
+ // NewFactory inits new factory for workers.
+ NewFactory(env Env) (roadrunner.Factory, error)
+}