Exemplo n.º 1
0
 public Peer(string id, RequestVoteDelegate requestVote, AppendEntriesDelegate appendEntries)
 {
     this.requestVote = requestVote;
     Id = id;
     this.appendEntries = appendEntries;
     CommitIndex        = 1;
 }
Exemplo n.º 2
0
 public Peer(string id, RequestVoteDelegate requestVote, AppendEntriesDelegate appendEntries)
 {
     this.requestVote = requestVote;
     Id = id;
     this.appendEntries = appendEntries;
     CommitIndex = 1;
 }