C# Class OpenStack.Threading.BackoffPolicy

This class provides a default implementation of IBackoffPolicy. The default implementation uses a progressive back-off policy with no expiration.
Inheritance: IBackoffPolicy
显示文件 Open project: crowdy/OpenStack-ConoHa

Public Methods

Method Description
GetBackoffIntervals ( ) : IEnumerable The default implementation uses the following progressive back-off strategy. No delay before polling the first time. Poll once per second, up to 10 times. Poll once per 5 seconds, up to 10 times. Poll once per 15 seconds, up to 10 times. Poll once per 30 seconds indefinitely.

Method Details

GetBackoffIntervals() public method

The default implementation uses the following progressive back-off strategy. No delay before polling the first time. Poll once per second, up to 10 times. Poll once per 5 seconds, up to 10 times. Poll once per 15 seconds, up to 10 times. Poll once per 30 seconds indefinitely.
public GetBackoffIntervals ( ) : IEnumerable
return IEnumerable