IPool
Pool implementation contract.
using Castle.MicroKernel.Context;
using System;
namespace Castle.MicroKernel.Lifestyle.Pool
{
public interface IPool : IDisposable
{
object Request(CreationContext context);
bool Release(object instance);
}
}