Table of Contents

Interface IBulkheadPolicy

Namespace
Polly.Bulkhead
Assembly
Polly.dll

Defines properties and methods common to all bulkhead policies.

public interface IBulkheadPolicy : IsPolicy, IDisposable
Inherited Members

Properties

BulkheadAvailableCount

Gets the number of slots currently available for executing actions through the bulkhead.

int BulkheadAvailableCount { get; }

Property Value

int

QueueAvailableCount

Gets the number of slots currently available for queuing actions for execution through the bulkhead.

int QueueAvailableCount { get; }

Property Value

int