Select Git revision
stoppable.go
Jono Wenger authored and
Benjamin Wenger
committed
stoppable.go 171 B
package stoppable
import "time"
// Interface for stopping a goroutine.
type Stoppable interface {
Close(timeout time.Duration) error
IsRunning() bool
Name() string
}