Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/TestPooling/Pool/IManagedPool.cs @ 14745

Last change on this file since 14745 was 14745, checked in by pkimmesw, 7 years ago

#2665 Merged ExecExpandExpression and PushProgram due to performance reasons, Tested managed object pooling

File size: 262 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace TestPooling.Pool
8{
9    public interface IManagedPool<T> : IDisposable
10    where T: class
11    {
12      T Get();
13    }
14}
Note: See TracBrowser for help on using the repository browser.