Autofac.Pooling.Tests.Shared.PoolTrackingPolicy.Return C# (CSharp) Method

Return() public method

public Return ( pooledObject ) : bool
return bool
        public override bool Return(TLimit pooledObject)
        {
            Interlocked.Decrement(ref _outOfPool);

            return base.Return(pooledObject);
        }
    }
PoolTrackingPolicy