本文整理汇总了Golang中github.com/libopenstorage/gossip/types.MessageChannel.SendData方法的典型用法代码示例。如果您正苦于以下问题:Golang MessageChannel.SendData方法的具体用法?Golang MessageChannel.SendData怎么用?Golang MessageChannel.SendData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/libopenstorage/gossip/types.MessageChannel
的用法示例。
在下文中一共展示了MessageChannel.SendData方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: handleGossip
func (g *GossiperImpl) handleGossip(peerId string, conn types.MessageChannel) {
log.Debug(g.id, " Servicing gossip request")
var peerMetaInfo types.StoreMetaInfo
err := error(nil)
g.updateSelfTs()
// Get the info about the node data that the sender has
err = conn.RcvData(&peerMetaInfo)
log.Debug(g.id, " Got meta data: \n", peerMetaInfo)
if err != nil {
return
}
// 2. Compare with current data that this node has and get
// the names of the nodes for which this node has stale info
// as compared to the sender
diffNew, selfNew := g.Diff(peerMetaInfo)
log.Debug(g.id, " The diff is: diffNew: \n", diffNew, " \nselfNew:\n", selfNew)
// Send this list to the peer, and get the latest data
// for them
err = conn.SendData(diffNew)
if err != nil {
log.Error("Error sending list of nodes to fetch: ", err)
return
}
// get the data for nodes sent above from the peer
err = g.getUpdatesFromPeer(conn)
if err != nil {
log.Error("Failed to get data for nodes from the peer: ", err)
return
}
// Since you know which data is stale on the sender side,
// send him the data for the updated nodes
err = g.sendUpdatesToPeer(&selfNew, conn)
if err != nil {
return
}
log.Debug(g.id, " Finished Servicing gossip request")
g.history.AddLatest(NewGossipSessionInfo(peerId, types.GD_PEER_TO_ME))
g.updateGossipTs()
}
示例2: sendUpdatesToPeer
// sendUpdatesToPeer sends the information about the given
// nodes to the peer
func (g *GossiperImpl) sendUpdatesToPeer(diff *types.StoreNodes,
conn types.MessageChannel) error {
dataToSend := g.Subset(*diff)
return conn.SendData(&dataToSend)
}
示例3: sendNodeMetaInfo
// sendNodeMetaInfo sends a list of meta info for all
// the nodes in the nodes's store to the peer
func (g *GossiperImpl) sendNodeMetaInfo(conn types.MessageChannel) error {
msg := g.MetaInfo()
err := conn.SendData(&msg)
return err
}