IsAbandoned returns true if Abandon() was called on this context.
()
| 755 | |
| 756 | // IsAbandoned returns true if Abandon() was called on this context. |
| 757 | func (c *DefaultCtx) IsAbandoned() bool { |
| 758 | return c.isAbandoned.Load() |
| 759 | } |
| 760 | |
| 761 | // ForceRelease releases an abandoned context back to the pool. |
| 762 | // This MUST only be called after all goroutines (including requestHandler and |