本文整理汇总了Golang中github.com/mateusbraga/freestore/pkg/view.View.NumberOfUpdates方法的典型用法代码示例。如果您正苦于以下问题:Golang View.NumberOfUpdates方法的具体用法?Golang View.NumberOfUpdates怎么用?Golang View.NumberOfUpdates使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/mateusbraga/freestore/pkg/view.View
的用法示例。
在下文中一共展示了View.NumberOfUpdates方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: getOrCreateConsensus
func getOrCreateConsensus(associatedView *view.View) consensusInstance {
consensusTableMu.Lock()
defer consensusTableMu.Unlock()
ci, ok := consensusTable[associatedView.NumberOfUpdates()]
if !ok {
ci = consensusInstance{associatedView: associatedView, taskChan: make(chan consensusTask, CHANNEL_DEFAULT_BUFFER_SIZE), callbackLearnChan: make(chan interface{}, 1)}
//ci.startTime = time.Now()
consensusTable[associatedView.NumberOfUpdates()] = ci
log.Println("Created consensus instance:", ci)
go consensusWorker(ci)
}
return ci
}
示例2: getNextProposalNumber
// getNextProposalNumber to be used by this process. This function is a stage of the Propose funcion.
func getNextProposalNumber(associatedView *view.View, thisProcess view.Process) (proposalNumber int) {
if associatedView.NumberOfMembers() == 0 {
log.Fatalln("associatedView is empty")
}
thisProcessPosition := associatedView.GetProcessPosition(thisProcess)
lastProposalNumber, err := getLastProposalNumber(associatedView.NumberOfUpdates())
if err != nil {
proposalNumber = associatedView.NumberOfMembers() + thisProcessPosition
} else {
proposalNumber = (lastProposalNumber - (lastProposalNumber % associatedView.NumberOfMembers()) + associatedView.NumberOfMembers()) + thisProcessPosition
}
saveProposalNumberOnStorage(associatedView.NumberOfUpdates(), proposalNumber)
return
}