Documentation ¶
Index ¶
Constants ¶
View Source
const (
CName = "common.net.pool"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Pool ¶
type Pool interface { // Get lookups to peer in existing connections or creates and outgoing new one Get(ctx context.Context, id string) (peer.Peer, error) // GetOneOf searches at least one existing connection in outgoing or creates a new one from a randomly selected id from given list GetOneOf(ctx context.Context, peerIds []string) (peer.Peer, error) // AddPeer adds incoming peer to the pool AddPeer(ctx context.Context, p peer.Peer) (err error) }
Pool creates and caches outgoing connection
Click to show internal directories.
Click to hide internal directories.