Err implements context.Context using the cancel context.
()
| 36 | |
| 37 | // Err implements context.Context using the cancel context. |
| 38 | func (ctx *crossContext) Err() error { |
| 39 | return ctx.cancelCtx.Err() |
| 40 | } |
| 41 | |
| 42 | // Value implements context.Context using the value context. |
| 43 | func (ctx *crossContext) Value(key any) any { |
no outgoing calls