()
| 79 | } |
| 80 | |
| 81 | func clearGlobalEventContext() { |
| 82 | globalCtxMutex.Lock() |
| 83 | defer globalCtxMutex.Unlock() |
| 84 | globalEventContext = nil |
| 85 | globalEventGoId = 0 |
| 86 | } |
| 87 | |
| 88 | func withGlobalEventCtx[T any](ec *EventContextImpl, fn func() T) T { |
| 89 | setGlobalEventContext(ec) |
no outgoing calls
no test coverage detected