Queue returns channel of queue for retrieving instances.
()
| 29 | |
| 30 | // Queue returns channel of queue for retrieving instances. |
| 31 | func (q *UniqueQueue) Queue() <-chan string { |
| 32 | return q.queue |
| 33 | } |
| 34 | |
| 35 | // Exist returns true if there is an instance with given identity |
| 36 | // exists in the queue. |
no outgoing calls