Table of Contents

Enum SharedSlotPoolOptions.SaturationPolicy

Namespace
LMKit.Global
Assembly
LM-Kit.NET.dll

What a request does when every slot is already busy.

public enum SharedSlotPoolOptions.SaturationPolicy

Fields

Queue = 0

Wait for a slot. Throughput stays at its ceiling and callers see latency rather than failure, which is what a service under load normally wants.

Reject = 1

Fail the request immediately, so a caller that would rather shed load or route elsewhere can do so instead of waiting.

Share