Table of Contents

Interface IPoolEventHandler<T>

Namespace
SampSharp.OpenMp.Core.Api
Assembly
SampSharp.OpenMp.Core.dll

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

entry T

The created pool entry.

OnPoolEntryDestroyed(T)

Called when a pool entry is destroyed.

void OnPoolEntryDestroyed(T entry)

Parameters

entry T

The destroyed pool entry.