(context TableContext)
| 146 | } |
| 147 | |
| 148 | func (m *v4EventParserMap) SetTableContext(context TableContext) { |
| 149 | for _, p := range m.parsers { |
| 150 | p.SetTableContext(context) |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | func (m *v4EventParserMap) SetNumSupportedEventTypes(num int) { |
| 155 | m.numSupportedEventTypes = num |
nothing calls this directly
no test coverage detected