Mercurial > pub > ImplabNet
diff Implab/ComponentContainer.cs @ 119:2573b562e328 v2
Promises rewritten, added improved version of AsyncQueue
author | cin |
---|---|
date | Sun, 11 Jan 2015 19:13:02 +0300 |
parents | da56ba7b1aab |
children |
line wrap: on
line diff
--- a/Implab/ComponentContainer.cs Sun Dec 28 16:09:03 2014 +0300 +++ b/Implab/ComponentContainer.cs Sun Jan 11 19:13:02 2015 +0300 @@ -18,7 +18,7 @@ } bool m_disposed; - readonly MTQueue<IDisposable> m_components = new MTQueue<IDisposable>(); + readonly AsyncQueue<IDisposable> m_components = new AsyncQueue<IDisposable>(); public void Add(IDisposable item) { Safe.ArgumentNotNull(item, "item");