Interface IAsyncOperationPool
- Namespace
- TAssetBundle
- Assembly
- TAssetBundle.dll
Asynchronous Operation Pool Interface
public interface IAsyncOperationPool
Methods
Clear()
Clears the pool.
void Clear()
Get<T>()
Retrieves a new asynchronous operation.
T Get<T>() where T : IAsyncOperation, new()
Returns
- T
Type Parameters
T
Push(IAsyncOperation)
Pushes an asynchronous operation back to the pool.
void Push(IAsyncOperation asyncOperation)
Parameters
asyncOperation
IAsyncOperation