(size int)
| 36 | } |
| 37 | |
| 38 | func newFIFOQueue(size int) queue { |
| 39 | return &fifoQueue{ |
| 40 | queueCh: make(chan Envelope, size), |
| 41 | closer: tmsync.NewCloser(), |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | func (q *fifoQueue) enqueue() chan<- Envelope { |
| 46 | return q.queueCh |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…