当前位置: 首页>>代码示例>>Golang>>正文


Golang View.GetProcessPosition方法代码示例

本文整理汇总了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,
	}
}
开发者ID:qinlodestar,项目名称:freestore,代码行数:26,代码来源:viewgenerator.go

示例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
}
开发者ID:qinlodestar,项目名称:freestore,代码行数:18,代码来源:consensus.go


注:本文中的github.com/mateusbraga/freestore/pkg/view.View.GetProcessPosition方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。