1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-10 22:49:13 +08:00
Files
kubo/peer/queue/interface.go
2014-10-20 03:26:46 -07:00

19 lines
513 B
Go

package queue
import peer "github.com/jbenet/go-ipfs/peer"
// PeerQueue maintains a set of peers ordered according to a metric.
// Implementations of PeerQueue could order peers based on distances along
// a KeySpace, latency measurements, trustworthiness, reputation, etc.
type PeerQueue interface {
// Len returns the number of items in PeerQueue
Len() int
// Enqueue adds this node to the queue.
Enqueue(peer.Peer)
// Dequeue retrieves the highest (smallest int) priority node
Dequeue() peer.Peer
}