C# Class Elders.Hystrix.NET.Util.TimerReference

A reference to the started HystrixTimer so it can be stopped with the Clear() method.
Mostrar archivo Open project: Elders/Hystrix.NET

Public Methods

Method Description
Clear ( ) : void

Stops the timer.

TimerReference ( ITimerListener listener, Timer timer ) : System.Threading

Initializes a new instance of the TimerReference class.

Method Details

Clear() public method

Stops the timer.
public Clear ( ) : void
return void

TimerReference() public method

Initializes a new instance of the TimerReference class.
public TimerReference ( ITimerListener listener, Timer timer ) : System.Threading
listener ITimerListener The listener to call repeatedly.
timer System.Threading.Timer The running background timer.
return System.Threading