Skip to content

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

License

Notifications You must be signed in to change notification settings

S-Nakib/SingleThreadedTaskScheduler

Repository files navigation

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.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages