예제 #1
0
 internal ReplicatingThread(RaftReplicatorTest outerInstance, RaftReplicator replicator, ReplicatedInteger content, bool trackResult)
 {
     this._outerInstance = outerInstance;
     this.Replicator     = replicator;
     this.Content        = content;
     this.TrackResult    = trackResult;
 }
예제 #2
0
 public ProgressTrackerAdaptor(RaftReplicatorTest outerInstance)
 {
     this._outerInstance = outerInstance;
 }
예제 #3
0
 public CapturingProgressTracker(RaftReplicatorTest outerInstance) : base(outerInstance)
 {
     this._outerInstance = outerInstance;
 }
예제 #4
0
 internal OneProgressTracker(RaftReplicatorTest outerInstance) : base(outerInstance)
 {
     this._outerInstance = outerInstance;
     Last = new Progress();
 }