github.com/hashicorp/vault/sdk@v0.13.0/queue/README.md (about)

     1  Vault SDK - Queue
     2  =================
     3  
     4  The `queue` package provides Vault plugins with a Priority Queue. It can be used
     5  as an in-memory list of `queue.Item` sorted by their `priority`, and offers
     6  methods to find or remove items by their key. Internally it
     7  uses `container/heap`; see [Example Priority
     8  Queue](https://golang.org/pkg/container/heap/#example__priorityQueue)
     9