Exemplo n.º 1
0
Arquivo: Program.cs Projeto: eier/sbc
        private void TryBuildNest()
        {
            if (_eier.Count < 2 || _hase == null)
                return;

            Nest nest = new Nest(_id + _count.ToString(), _id, _eier.ToArray(), _hase);

            Console.WriteLine("Nest built");

            new Thread(new ThreadStart(() =>
            {
                _client.AddNest(nest);
                Work();
            })).Start();
        }
Exemplo n.º 2
0
Arquivo: Form1.cs Projeto: eier/sbc
 public void ReturnNest(Common.OsterFabrikService.Nest nest)
 {
     throw new NotImplementedException();
 }