errors.go 272 B

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