...

Source file src/github.com/docker/go-events/errors.go

Documentation: github.com/docker/go-events

     1  package events
     2  
     3  import "fmt"
     4  
     5  var (
     6  	// ErrSinkClosed is returned if a write is issued to a sink that has been
     7  	// closed. If encountered, the error should be considered terminal and
     8  	// retries will not be successful.
     9  	ErrSinkClosed = fmt.Errorf("events: sink closed")
    10  )
    11  

View as plain text