Class WalClaimTooLargeException
A single WAL claim exceeds the entire buffer capacity. Not transient — the claim can never succeed without reconfiguring the buffer.
public class WalClaimTooLargeException : DurabilityException, ISerializable
- Inheritance
-
WalClaimTooLargeException
- Implements
- Inherited Members
Constructors
WalClaimTooLargeException(int, int)
Creates a new WalClaimTooLargeException.
public WalClaimTooLargeException(int requestedBytes, int bufferCapacity)
Parameters
requestedBytesintNumber of bytes the producer tried to claim.
bufferCapacityintMaximum capacity of the buffer in bytes.
Properties
BufferCapacity
Maximum capacity of the buffer in bytes.
public int BufferCapacity { get; }
Property Value
RequestedBytes
Number of bytes the producer tried to claim.
public int RequestedBytes { get; }