예제 #1
0
파일: Program.cs 프로젝트: 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();
        }
예제 #2
0
파일: Form1.cs 프로젝트: eier/sbc
 public void ReturnNest(Common.OsterFabrikService.Nest nest)
 {
     throw new NotImplementedException();
 }