C# Class Polly.Bulkhead.BulkheadPolicy

Afficher le fichier Open project: App-vNext/Polly

Méthodes publiques

Méthode Description
Dispose ( ) : void

Disposes of the BulkheadPolicy, allowing it to dispose its internal resources. Only call Dispose() on a BulkheadPolicy after all actions executed through the policy have completed. If actions are still executing through the policy when Dispose() is called, an ObjectDisposedException may be thrown on the actions' threads when those actions complete.

Private Methods

Méthode Description
BulkheadPolicy ( Action exceptionPolicy, int maxParallelization, int maxQueueingActions, Nito.AsyncEx.AsyncSemaphore maxParallelizationSemaphore, Nito.AsyncEx.AsyncSemaphore maxQueuedActionsSemaphore ) : System
BulkheadPolicy ( Task>.Func asyncExceptionPolicy, int maxParallelization, int maxQueueingActions, Nito.AsyncEx.AsyncSemaphore maxParallelizationSemaphore, Nito.AsyncEx.AsyncSemaphore maxQueuedActionsSemaphore ) : System

Method Details

Dispose() public méthode

Disposes of the BulkheadPolicy, allowing it to dispose its internal resources. Only call Dispose() on a BulkheadPolicy after all actions executed through the policy have completed. If actions are still executing through the policy when Dispose() is called, an ObjectDisposedException may be thrown on the actions' threads when those actions complete.
public Dispose ( ) : void
Résultat void