| 87 | const uiAnimationInterval = 120 * time.Millisecond |
| 88 | |
| 89 | type TaskEventSink struct { |
| 90 | queue chan TaskUiEvent |
| 91 | } |
| 92 | |
| 93 | func NewTaskEventSink() *TaskEventSink { |
| 94 | return &TaskEventSink{queue: make(chan TaskUiEvent, 128)} |
nothing calls this directly
no outgoing calls
no test coverage detected