summaryrefslogtreecommitdiff
path: root/factory.go
diff options
context:
space:
mode:
Diffstat (limited to 'factory.go')
-rw-r--r--factory.go8
1 files changed, 3 insertions, 5 deletions
diff --git a/factory.go b/factory.go
index e58d9364..97ea3a87 100644
--- a/factory.go
+++ b/factory.go
@@ -4,9 +4,7 @@ import "os/exec"
// Factory is responsible of wrapping given command into tasks worker.
type Factory interface {
- // NewWorker creates new worker process based on given process.
- NewWorker(cmd *exec.Cmd) (w *Worker, err error)
-
- // Close closes all open factory descriptors.
- Close() error
+ // SpawnWorker creates new worker process based on given command.
+ // Process must not be started.
+ SpawnWorker(cmd *exec.Cmd) (w *Worker, err error)
}