Field MaximumCapacity
Maximum capacity of the container.
Namespace: Unity.Logging
Assembly: solution.dll
Syntax
public const uint MaximumCapacity = 134217728
Returns
Type | Description |
---|---|
uint |
Remarks
Limit capacity to max 2^27 bytes == 134 mb because RingBuffer's arithmetic (Distance) uses signed 32-bit int and we don't want to crash in 32 bit platforms, also too much will crash with OOM