Mercurial > pub > ImplabNet
view Implab/ObjectPoolWrapper.cs @ 86:b33832ab0262 v2
ServiceLocator: added a cleanup callback to the service registration method
author | cin |
---|---|
date | Mon, 06 Oct 2014 03:41:17 +0400 |
parents | 34bb2f32634d |
children |
line wrap: on
line source
using System; namespace Implab { public class ObjectPoolWrapper<T> : IDisposable { readonly T m_value; readonly ObjectPool<T> m_pool; internal ObjectPoolWrapper(T value, ObjectPool<T> pool) { m_value = value; m_pool = pool; } public T Value { get { return m_value; } } #region IDisposable implementation public void Dispose() { m_pool.Release(m_value); } #endregion } }