本文整理汇总了Golang中github.com/mateusbraga/freestore/pkg/view.View.GetProcessPosition方法的典型用法代码示例。如果您正苦于以下问题:Golang View.GetProcessPosition方法的具体用法?Golang View.GetProcessPosition怎么用?Golang View.GetProcessPosition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/mateusbraga/freestore/pkg/view.View
的用法示例。
在下文中一共展示了View.GetProcessPosition方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: generateViewSequenceWithConsensus
func (s *Server) generateViewSequenceWithConsensus(associatedView *view.View, seq ViewSeq) {
assertOnlyUpdatedViews(associatedView, seq)
if associatedView.GetProcessPosition(s.thisProcess) == CONSENSUS_LEADER_PROCESS_POSITION {
consensus.Propose(associatedView, s.thisProcess, &seq)
}
log.Println("Waiting for consensus resolution")
value := <-consensus.GetConsensusResultChan(associatedView)
// get startReconfigurationTime to compute reconfiguration duration
//if startReconfigurationTime.IsZero() || startReconfigurationTime.Sub(time.Now()) > 20*time.Second {
//startReconfigurationTime = consensus.GetConsensusStartTime(associatedView)
//log.Println("starttime :", startReconfigurationTime)
//}
result, ok := value.(*ViewSeq)
if !ok {
log.Fatalf("FATAL: consensus on generateViewSequenceWithConsensus got %T %v\n", value, value)
}
log.Println("Consensus result received")
s.generatedViewSeqChan <- generatedViewSeq{
AssociatedView: associatedView,
ViewSeq: *result,
}
}
示例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
}