Azavea.Open.DAO.Unqueryable.UnqueryableDaLayer.DisposeOfQuery C# (CSharp) Method

DisposeOfQuery() public method

Should be called when you're done with the query. Allows us to cache the objects for reuse.
public DisposeOfQuery ( IDaQuery query ) : void
query IDaQuery Query you're done using.
return void
        public override void DisposeOfQuery(IDaQuery query)
        {
            _queryCache.Return((UnqueryableQuery)query);
        }