C# Class Burrow.Internal.DefaultRetryPolicy

The default retry policy
Inheritance: IRetryPolicy
Datei anzeigen Open project: vanthoainguyen/Burrow.NET Class Usage Examples

Public Methods

Method Description
DefaultRetryPolicy ( int maxDelayTime = 5*60*1000 ) : System

Initialize the default retry policy with maxDelayTime = 5 minutes

Reset ( ) : void
WaitForNextRetry ( System.Action retryingAction ) : void

Method Details

DefaultRetryPolicy() public method

Initialize the default retry policy with maxDelayTime = 5 minutes
public DefaultRetryPolicy ( int maxDelayTime = 5*60*1000 ) : System
maxDelayTime int
return System

Reset() public method

public Reset ( ) : void
return void

WaitForNextRetry() public method

public WaitForNextRetry ( System.Action retryingAction ) : void
retryingAction System.Action
return void