(ec *EventContextImpl, fn func() T)
| 86 | } |
| 87 | |
| 88 | func withGlobalEventCtx[T any](ec *EventContextImpl, fn func() T) T { |
| 89 | setGlobalEventContext(ec) |
| 90 | defer clearGlobalEventContext() |
| 91 | return fn() |
| 92 | } |
| 93 | |
| 94 | func GetGlobalEventContext() *EventContextImpl { |
| 95 | globalCtxMutex.Lock() |
no test coverage detected