InspectQueue returns information about a queue.
(ctx context.Context, qh Handle)
| 95 | type QueueAPI interface { |
| 96 | // InspectQueue returns information about a queue. |
| 97 | InspectQueue(ctx context.Context, qh Handle) (QueueInfo, error) |
| 98 | // Dequeue reads from the queue. |
| 99 | // It reads into buf until buf is full or another criteria is fulfilled. |
| 100 | Dequeue(ctx context.Context, q Handle, buf []Message, opts DequeueOpts) (int, error) |
no outgoing calls
no test coverage detected