Task based sequencer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading.Tasks; | |
namespace Seq | |
{ | |
public class Sequencer | |
{ | |
private readonly object _lock = new object(); | |
private Task _task = Task.FromResult(0); | |
public void Dispatch(Action action) | |
{ | |
lock (_lock) | |
{ | |
_task = _task.ContinueWith(_ => action()); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment