()
| 39 | |
| 40 | func (q *simpleQueue) enqueue() chan<- Envelope { return q.input } |
| 41 | func (q *simpleQueue) dequeue() <-chan Envelope { return q.output } |
| 42 | func (q *simpleQueue) close() { q.closeFn() } |
| 43 | func (q *simpleQueue) closed() <-chan struct{} { return q.closeCh } |
| 44 |
nothing calls this directly
no outgoing calls
no test coverage detected