Skip to content

PoolAction Enum

What action was performed on the pool.

C#
public enum PoolAction

An object was created.

C#
CreatedObject = 0

An object was destroyed.

C#
DestroyedObject = 1

An object was rented.

C#
RentedObject = 2

An object was returned back to the pool.

C#
ReleasedObject = 3