Table of Contents

Class WalClaimTooLargeException

Namespace
Typhon.Engine
Assembly
Typhon.Engine.dll

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)

public WalClaimTooLargeException(int requestedBytes, int bufferCapacity)

Parameters

requestedBytes int

Number of bytes the producer tried to claim.

bufferCapacity int

Maximum capacity of the buffer in bytes.

Properties

BufferCapacity

Maximum capacity of the buffer in bytes.

public int BufferCapacity { get; }

Property Value

int

RequestedBytes

Number of bytes the producer tried to claim.

public int RequestedBytes { get; }

Property Value

int