예제 #1
0
파일: election.go 프로젝트: bvk/ascent
func (this *Election) doRestoreElection(state *thispb.ElectionState) {
	atomic.StoreInt64(&this.currentRound, state.GetCurrentRound())
	this.currentWinner = state.GetCurrentWinner()
}
예제 #2
0
파일: election.go 프로젝트: bvk/ascent
func (this *Election) doSaveElection(state *thispb.ElectionState) {
	state.CurrentRound = proto.Int64(this.CurrentRound())
	state.CurrentWinner = proto.String(this.currentWinner)
}