Remove events from Runtime

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby
2017-06-21 11:43:41 -07:00
parent 0b06fa8518
commit 8830866eed
3 changed files with 21 additions and 11 deletions

View File

@@ -43,6 +43,4 @@ type Runtime interface {
Tasks(context.Context) ([]Task, error)
// Delete removes the task in the runtime.
Delete(context.Context, Task) (*Exit, error)
// Events returns events for the runtime and all tasks created by the runtime
Events(context.Context) <-chan *Event
}