| 26 | ) |
| 27 | |
| 28 | type IEventStruct interface { |
| 29 | String() string |
| 30 | Clone() IEventStruct |
| 31 | GetUUID() string |
| 32 | RecordType() uint32 |
| 33 | GetEventId() uint32 |
| 34 | DumpRecord() bool |
| 35 | ParseEvent() (IEventStruct, error) |
| 36 | ParseContext() error |
| 37 | SetLogger(logger *log.Logger) |
| 38 | SetConf(conf config.IConfig) |
| 39 | SetRecord(rec perf.Record) |
| 40 | } |
| 41 | |
| 42 | type CommonEvent struct { |
| 43 | mconf *config.ModuleConfig |
no outgoing calls
no test coverage detected