summaryrefslogtreecommitdiff
path: root/factory.go
diff options
context:
space:
mode:
Diffstat (limited to 'factory.go')
-rw-r--r--factory.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/factory.go b/factory.go
deleted file mode 100644
index 3c304824..00000000
--- a/factory.go
+++ /dev/null
@@ -1,13 +0,0 @@
-package roadrunner
-
-import "os/exec"
-
-// Factory is responsible of wrapping given command into tasks worker.
-type Factory interface {
- // SpawnWorker creates new worker process based on given command.
- // Process must not be started.
- SpawnWorker(cmd *exec.Cmd) (w *Worker, err error)
-
- // Close the factory and underlying connections.
- Close() error
-}