Paxos.Agents.Learner.Learner C# (CSharp) 메소드

Learner() 공개 메소드

public Learner ( int acceptorsCount ) : System
acceptorsCount int
리턴 System
		public Learner(int acceptorsCount)
		{
			this.acceptorsCount = acceptorsCount;
			Commands = new List<ICommand>();
			Register<Accepted>(OnAccepted);
		}