ExcludeEvent determines whether the supplied short event ID exists in the bitset of excluded events.
(id uint)
| 192 | // ExcludeEvent determines whether the supplied short |
| 193 | // event ID exists in the bitset of excluded events. |
| 194 | func (c *EventSourceConfig) ExcludeEvent(id uint) bool { |
| 195 | return c.dropMasks.IsSet(id) |
| 196 | } |
| 197 | |
| 198 | // EventExists determines if the provided event ID exists |
| 199 | // in the internal event catalog by checking the event ID |