Interface IPoolEventHandler<T>
Provides the events for GetPoolEventDispatcher().
public interface IPoolEventHandler<T> : IEventHandler<IPoolEventHandler<T>> where T : unmanaged, IUnmanagedInterface
Type Parameters
T
- Inherited Members
Methods
OnPoolEntryCreated(T)
Called when a pool entry is created.
void OnPoolEntryCreated(T entry)
Parameters
entryTThe created pool entry.
OnPoolEntryDestroyed(T)
Called when a pool entry is destroyed.
void OnPoolEntryDestroyed(T entry)
Parameters
entryTThe destroyed pool entry.