Example #1
0
			// id is user data.
			public Lane(ulong id, int slots)
			{
				Out = new PendingOut[slots];
				Progress = new InProgress[slots];
				Done = new Done[slots];
				Acks = new uint[slots];
				Id = id;
				LagMsMin = 0;
				ResendMs = 200;
			}
Example #2
0
 // id is user data.
 public Lane(ulong id, int slots)
 {
     Out      = new PendingOut[slots];
     Progress = new InProgress[slots];
     Done     = new Done[slots];
     Acks     = new uint[slots];
     Id       = id;
     LagMsMin = 0;
     ResendMs = 200;
 }