package network_map import "context" type PeersUpdateManager interface { SendUpdate(ctx context.Context, peerID string, update *UpdateMessage) CreateChannel(ctx context.Context, peerID string) chan *UpdateMessage CloseChannel(ctx context.Context, peerID string) CountStreams() int HasChannel(peerID string) bool CloseChannels(ctx context.Context, peerIDs []string) GetAllConnectedPeers() map[string]struct{} }