Ejemplo n.º 1
0
        //回收对象
        public void Push(object obj_)
        {
            Type     type = obj_.GetType();
            BasePool pool = GetPool(type);

            pool.Push(obj_);
        }
Ejemplo n.º 2
0
        public void Push(string id_, object obj_)
        {
            BasePool pool = GetPool(id_);

            pool.Push(obj_);
        }