Polly.Net40Async 5.0.3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Polly.Net40Async --version 5.0.3
NuGet\Install-Package Polly.Net40Async -Version 5.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Polly.Net40Async" Version="5.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Polly.Net40Async --version 5.0.3
#r "nuget: Polly.Net40Async, 5.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Polly.Net40Async as a Cake Addin
#addin nuget:?package=Polly.Net40Async&version=5.0.3

// Install Polly.Net40Async as a Cake Tool
#tool nuget:?package=Polly.Net40Async&version=5.0.3

Polly.Net40Async is a version of the Polly library for .NET 4.0 with async support via Microsoft.Bcl.Async.  Polly allows developers to express resilience policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Polly.Net40Async:

Package Downloads
Polly.Caching.MemoryCache The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Polly.Caching.MemoryCache is a plug-in for the .NET OSS resilience library Polly, supporting System.Runtime.Caching.MemoryCache as a provider for Polly's CachePolicy.

Authing.Library

通过简单、安全的接口使用 Authing 提供的功能。

Authing.CSharp.SDK

通过简单、安全的接口使用 Authing 提供的功能。

Cosmos.Comet.SdkReference

Basic implementation and utilities for Cosmos SDKs

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.9.0 41,765 4/9/2018
5.8.0 8,274 1/31/2018
5.7.0 2,675 1/6/2018
5.6.1 2,238 11/29/2017
5.6.0 1,005 11/27/2017
5.5.0 1,664 11/3/2017
5.4.0 978 11/1/2017
5.3.1 67,022 8/6/2017
5.3.0 1,006 7/27/2017
5.2.0 5,039 6/28/2017
5.1.1-v5-x-cachealpha0001 827 6/2/2017
5.1.0 2,676 5/4/2017
5.0.6 285,208 2/11/2017
5.0.5 1,035 2/4/2017
5.0.4-pre 2,149 1/17/2017
5.0.3 1,045 1/6/2017
5.0.2-v5-0-alpha0001 922 11/22/2016
5.0.1-v5-0-alpha0001 888 10/25/2016
4.3.0 24,928 6/30/2016
4.2.4 2,010 6/17/2016
4.2.3 1,363 6/7/2016
4.2.2 1,462 6/2/2016

v5.0 is a major release with significant new resilience policies: Timeout; Bulkhead Isolation; Fallback; and PolicyWrap.  See release notes back to v5.0.0 for full details.

    5.0.3 RTM
    ---------------------
    - Refine implementation of cancellable synchronous WaitAndRetry
    - Minor breaking change: Where a user delegate does not observe cancellation, Polly will now honour the delegate's outcome rather than throw for the unobserved cancellation (issue 188).

    5.0.2 alpha
    ---------------------
    - Add full specs support for .NET40.
    - Fix issue 179: Make Net4.0 async implementation for Bulkhead truly async.

    5.0.1 alpha
    ---------------------
    - (Add a .NETStandard1.0 target.)

    5.0.0 alpha
    ---------------------
    A major release, adding significant new resilience policies:
    - Timeout policy: allows timing out any execution
    - Bulkhead isolation policy: limits the resources consumable by governed actions, such that a faulting channel cannot cause cascading failures.
    - Fallback policy: provides for a fallback execution or value, in case of overall failure
    - PolicyWrap: allows flexibly combining Policy instances of any type, to form an overall resilience strategy.

    Other changes include:
    - Add PolicyKeys and context to all policy executions, for logging and to support later introduction of policy events and metrics.
    - Add CancellationToken support to synchronous executions.
    - Add some missing ExecuteAndCapture/Async overloads.
    - Remove invalid ExecuteAsync overloads taking (but not making use of) a CancellationToken
    - Provide .NET4.0 support uniquely through Polly.NET40Async package
    - Retire ContextualPolicy (not part of documented API; support now in Policy base class)
    - Discontinue .NET3.5 support

     4.3.0
     ---------------------
     - Added ability for policies to handle return results.  Optimised circuit-breaker hot path.  Fixed circuit-breaker threshold bug.  

     4.2.4
     ---------------------
     - Added overloads to WaitAndRetry and WaitAndRetryAsync methods that accept an onRetry delegate which includes the attempt count.

     4.2.3
     ---------------------
     - Cleaned up new Polly.Net40Async NuGet package, removing Polly.dll and unused framework folders.

     4.2.2
     ---------------------
     - Add new Polly.Net40Async project supporting async for .NET40 via Microsoft.Bcl.Async.  This is available as separate Nuget packages Polly.Net40Async and Polly.Net40Async-signed.