Exemplo n.º 1
0
		public void Done(AsyncCommand cmd)
		{
			commands.Remove(cmd);
			if (running < maximumSimultaneous)
			{
				Start();
			}
		}
Exemplo n.º 2
0
		public void Add(AsyncCommand cmd)
		{

			commands.Add(cmd);
			if (running < maximumSimultaneous)
			{
				Start();
			}
		}