Table of Contents

Enum BatchQueueOverflowStrategy

Namespace
LfrlAnvil.Async
Assembly
LfrlAnvil.Core.dll

Represents a strategy for handling IBatch<T> element overflow, according to its QueueSizeLimitHint property.

public enum BatchQueueOverflowStrategy : byte
Extension Methods

Fields

DiscardFirst = 1

Specifies that when QueueSizeLimitHint is exceeded, the IBatch<T> will dequeue and discard enough of its current elements to make room for new elements.

DiscardLast = 0

Specifies that when QueueSizeLimitHint is exceeded, the IBatch<T> will not accept any new elements, until enough of its currently enqueued elements get processed.

Ignore = 2

Specifies that IBatch<T> will ignore its QueueSizeLimitHint and always allow to add new elements.