9 lines
159 B
C#
9 lines
159 B
C#
|
using System;
|
||
|
|
||
|
public interface IMixedObjectPool<T> : IDisposable where T : class
|
||
|
{
|
||
|
T Allocate(string typeName);
|
||
|
|
||
|
void Free(string typeName, T obj);
|
||
|
}
|