inMemoryEvents 内存事件列表实现
| 326 | |
| 327 | // inMemoryEvents 内存事件列表实现 |
| 328 | type inMemoryEvents struct { |
| 329 | mu sync.RWMutex |
| 330 | events []*Event |
| 331 | } |
| 332 | |
| 333 | func newInMemoryEvents() *inMemoryEvents { |
| 334 | return &inMemoryEvents{ |
nothing calls this directly
no outgoing calls
no test coverage detected