Example #1
0
        public ClientAgentSimulator(ClientPostOffice postOffice)
        {
            this.nowBlock   = new TimeBlock();
            this.postOffice = postOffice;

            // create server login agent simulator
            this.serverLoginAgentSimulator = new ServerAgentSimulator(this);
        }
Example #2
0
 public void Dispose()
 {
     this.serverLoginAgentSimulator = null;
     this.postOffice = null;
 }