DShergilashvili / SingleThreadedTaskScheduler

A .NET TaskScheduer that maintains a single thread internally and executes all tasks in that thread.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SingleThreadedTaskScheduler

The .NET default TaskScheduler doesn't guarantee that two tasks of the same Request will get executed on the same Thread.
To know more read Internal Mechanisms of Tasks in .NET

This behaviour of .NET can create issues in some situations. Sometimes we want some of our tasks executed on the Same Thread.

For example, Say we are using some library that doesn't support getting called from multiple Threads.

To solve this problem, we are creating a Custom TaskScheduler that will execute tasks on the same thread.

The project is not finished yet.

Todos

  1. Maybe we need to make it IDisposable.
  2. We need to maintain a threadpool.
  3. Test and brainstorm if there is any other issues.

About

A .NET TaskScheduer that maintains a single thread internally and executes all tasks in that thread.

License:MIT License


Languages

Language:C# 100.0%