Done implements context.Context using the cancel context.
()
| 31 | |
| 32 | // Done implements context.Context using the cancel context. |
| 33 | func (ctx *crossContext) Done() <-chan struct{} { |
| 34 | return ctx.cancelCtx.Done() |
| 35 | } |
| 36 | |
| 37 | // Err implements context.Context using the cancel context. |
| 38 | func (ctx *crossContext) Err() error { |
no outgoing calls