| 25 | ) |
| 26 | |
| 27 | type eventWorker struct { |
| 28 | incoming chan event.IEventStruct |
| 29 | ticker *time.Ticker |
| 30 | tickerCount uint8 |
| 31 | UUID string |
| 32 | processor *EventProcessor |
| 33 | } |
| 34 | |
| 35 | func NewEventWorker(uuid string, processor *EventProcessor) IWorker { |
| 36 | eWorker := &eventWorker{} |
nothing calls this directly
no outgoing calls
no test coverage detected