QueuePool.cs 610 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. namespace UnityEditor.Graphing
  3. {
  4. static class QueuePool<T>
  5. {
  6. // Object pool to avoid allocations.
  7. static readonly ObjectPool<Queue<T>> k_QueuePool = new ObjectPool<Queue<T>>(null, l => l.Clear());
  8. public static Queue<T> Get()
  9. {
  10. return k_QueuePool.Get();
  11. }
  12. public static PooledObject<Queue<T>> GetDisposable()
  13. {
  14. return k_QueuePool.GetDisposable();
  15. }
  16. public static void Release(Queue<T> toRelease)
  17. {
  18. k_QueuePool.Release(toRelease);
  19. }
  20. }
  21. }