Ejemplo n.º 1
0
        void Fun_Toggle_First()
        {
            PackData _packet;
            int      _rr = 0;

            for (int i = 0; i < Constant.LOOP_MAX; i++)
            {
                int _count = list.Count;
                int _rand  = _rr++ % 2;
                if (_rand == 0)
                {
                    _packet = ObjectPoolT <PackData> .Dequeue();

                    _packet.PlusCount();
                    list.Add(_packet);
                }
                else if (list.Count > 0)
                {
                    ObjectPoolT <PackData> .Enqueue(list[0]);

                    list.RemoveAt(0);
                }

                //if(list.Count > 800)
                //{
                //	while(list.Count > 0)
                //	{
                //		ObjectPoolT<PackData>.Enqueue(list[0]);
                //		list.RemoveAt(0);
                //	}
                //}
            }
        }
Ejemplo n.º 2
0
        public void Start()
        {
            int _loop = 5;

            t[0] = DateTime.Now;
            ObjectPoolT <PackData> .Initialize(Constant.BUFFER_SIZE);

            t[1] = DateTime.Now;


            Debug.Log("ClassPoolT_Test<T> Loop:" + Constant.LOOP_MAX);
            Debug.Log("OP<T> create:" + ((TimeSpan)(t[1] - t[0])).Milliseconds);
            while (true)
            {
                for (int i = 0; i < _loop; i++)
                {
                    t[1] = DateTime.Now;
                    switch (Constant.type)
                    {
                    case eTestType.ListFirst:       Fun_Random_First(); break;

                    case eTestType.ListEnd:         Fun_Random_End(); break;

                    case eTestType.ToggleFirst: Fun_Toggle_First(); break;
                    }
                    t[2] = DateTime.Now;
                    Debug.Log("\t\tClassPoolT_Test<T> test:" + ((TimeSpan)(t[2] - t[1])).Milliseconds + ":" + list.Count + ":" + ObjectPoolT <PackData> .queue.Count);
                }
                Thread.Sleep(Constant.SLEEP_TIME);
            }
        }
Ejemplo n.º 3
0
        void Fun_Random_End()
        {
            PackData _packet;
            Random   _random = new Random();

            for (int i = 0; i < Constant.LOOP_MAX; i++)
            {
                int _count = list.Count;
                int _rand  = _random.Next() % 2;
                if (_rand == 0)
                {
                    _packet = ObjectPoolT <PackData> .Dequeue();

                    _packet.PlusCount();
                    list.Add(_packet);
                }
                else if (list.Count > 0)
                {
                    ObjectPoolT <PackData> .Enqueue(list[_count - 1]);

                    list.RemoveAt(_count - 1);
                }
            }
        }