Mercurial > pub > ImplabNet
view Implab/ObjectPoolWrapper.cs @ 87:79badb3ed195 v2
minor fixes in the service locator class
author | cin |
---|---|
date | Mon, 06 Oct 2014 18:11:23 +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 } }