C# Class SimpleConcurrency.Actors.StandardThreadPoolScheduler

A simple scheduler using the standard .NET thread pool.
Inheritance: IScheduler
Exibir arquivo Open project: sdanzan/SimpleConcurrency

Public Methods

Method Description
Schedule ( System.Action action ) : void

Queue the provided Action to be exceuted as a worker by the .NET ThreadPool.

Method Details

Schedule() public method

Queue the provided Action to be exceuted as a worker by the .NET ThreadPool.
public Schedule ( System.Action action ) : void
action System.Action Job to schedule.
return void