Click or drag to resize

PoolLimitMode Enumeration

What to do when a pool reaches its limit?

Namespace:  Kit.Pooling
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0
Syntax
C#
public enum PoolLimitMode
Request Example View Source
Members
  Member nameDescription
StopGivingStop giving new instances.
ReuseFirstReuse the first instance given.
DestroyAfterUseCreate a new instance but do not pool it when it gets destroyed.
See Also