C# Class DevCap.Timing.PeriodicTask

Base class for tasks that run periodically.
Inheritance: IDisposable
显示文件 Open project: jcmoyer/DevCap

Public Methods

Method Description
Dispose ( ) : void
Start ( ) : void
Stop ( ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void
OnStart ( ) : void
OnStop ( ) : void
PeriodicTask ( ) : System
Run ( ) : void

Method Details

Dispose() public method

public Dispose ( ) : void
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

OnStart() protected method

protected OnStart ( ) : void
return void

OnStop() protected method

protected OnStop ( ) : void
return void

PeriodicTask() protected method

protected PeriodicTask ( ) : System
return System

Run() protected abstract method

protected abstract Run ( ) : void
return void

Start() public method

public Start ( ) : void
return void

Stop() public method

public Stop ( ) : void
return void