C# Class SimpleConcurrency.Actors.TaskScheduler

A simple scheduler using TPL.
Inheritance: IScheduler
Datei anzeigen Open project: sdanzan/SimpleConcurrency

Public Methods

Method Description
Schedule ( System.Action action ) : void

Create a task associated with the provided action and start it.

Method Details

Schedule() public method

Create a task associated with the provided action and start it.
public Schedule ( System.Action action ) : void
action System.Action Job to schedule.
return void