Castle.MicroKernel.Lifestyle.Pool.IPool
Pool implementation contract.
namespace Castle.MicroKernel.Lifestyle.Pool
{
public interface IPool : IDisposable
{
bool Release(object instance);
object Request(CreationContext context, Func<CreationContext, Burden> creationCallback);
}
}