What is the conceptual difference between SynchronizationContext and TaskScheduler
I was just reading CLR via C#
book by Jeffrey Ritcher and thanks to him I can also give some easy explanation related to that topic. (assuming that I am not fully agreed with the whole details in answers)
First of all, TaskScheduler
object is responsible for executing scheduled tasks. The FCL ships with two TaskScheduler
-derived types: the thread pool task scheduler and a synchronization context task scheduler. By default, all applications use the
thread pool task scheduler. This task scheduler schedules tasks to the thread pool’s worker threads. You can get a reference to the default task scheduler by querying TaskScheduler
’s static Default
property.
The synchronization context task scheduler is typically used for applications sporting a graphical user interface. This task scheduler schedules all tasks onto the application’s GUI thread
so that all the task code can successfully update UI components like buttons, menu items, and so on.
The synchronization context task scheduler does not use the thread pool at all. You can get a reference to a synchronization context task scheduler by querying TaskScheduler
’s static FromCurrentSynchronizationContext
method.
As you can see from SynchronizationContextTaskScheduler
implementation, internally it uses SynchronizationContext
field. FCL
defines a base class, called System.Threading.SynchronizationContext
, which solves all these problems:
- GUI applications impose a threading model where the thread that created a UI element is the only thread allowed to update that UI element. This is a problem, because your code will throw an exception if it tries to update UI elements via a thread pool thread. Somehow, the thread pool thread must have the GUI thread update the UI elements.
- ASP.NET applications allow any thread to do whatever it wants. When a thread pool thread starts to process a client’s request, it can assume the client’s culture, allowing the web server to return culture-specific formatting for numbers, dates, and times. In addition, the web server can assume the client’s identity,so that the server can access only the resources that the client is allowed to access. When a thread pool thread spawns an asynchronous operation, it may be completed by another thread pool thread, which will be processing the result of an asynchronous operation. While this work is being performed on behalf of the original client request, the culture and identity needs to “flow” to the new thread pool thread so any additional work done on behalf of the client is performed using the client’s culture and identity information.
Simply stated, a SynchronizationContext
-derived object connects an application model to its threading model. The FCL defnes several classes derived from
SynchronizationContext, but usually you will not deal directly with these classes; in fact, many of them are not publicly exposed or documented.
For the most part, application developers do not need to know anything about the SynchronizationContext
class. When you await
a Task
, the calling thread’s SynchronizationContext
object is obtained. When a thread pool thread completes the Task
, the SynchronizationContext
object is used, ensuring the right threading model for your application model. So, when a GUI thread
awaits
a Task
, the code following the await
operator is guaranteed to execute on the GUI thread as
well, allowing that code to update UI elements. For an ASP.NET application, the code following the
await operator is guaranteed to execute on a thread pool thread that has the client’s culture and
principal information associated with it.
You can, of course, define your own class derived from TaskScheduler
if you have special task
scheduling needs. Microsoft has provided a bunch of sample code for tasks and includes the source
code for a bunch of task schedulers in the Parallel Extensions Extras package. Like, IOTaskScheduler
, LimitedConcurrencyLevelTaskScheduler
, OrderedTaskScheduler
, PrioritizingTaskScheduler
, ThreadPerTaskScheduler
.
Each platform has it's own "scheduler" and they have their own abstractions around them. e.g. WinForms uses a message pump. WPF uses another message pump abstracted within "Dispatcher". A ThreadPool is another "scheduler" abstracted within "ThreadPool". These (and some others) are lower-level schedulers.
A Task and a TaskScheduler would like the user of a Task to not have to think about scheduling tasks at these lower levels (you can of course, in an abstracted way). You should be able to start a task and an ambient "scheduler" should take care of it. For example, TaskFactory.StartNew(()=>{LengthyOperation()})
should work regardless of what platform I'm running under. That's where a SynchronizationContext
comes in. It knows about what lower-level schedulers are involved in the currently running framework. That is passed along to a TaskScheduler
and that scheduler can both schedule tasks (possibly on to the ThreadPool) and schedule continuations through the lower-level scheduler associated with the currently running framework (see SynchronizationContext
) to maintain synchronization requirements. e.g. although you'd like your Task to run in the ThreadPool, you may want a continuation to run in the UI thread.
It's important to know that the TaskScheduler
is a abstraction of multiple other schedulers. This isn't the only reason it exists, but one of the reasons for this "extra" abstraction".
Although, as quoted,
Both SynchronizationContext and TaskScheduler are abstractions that represent a “scheduler”
IMO, degree of abstraction (and hence API) differs. SynchronizationContext is a more generic API in a sense that Post/Send takes a simple method delegate.
On the other hand, TaskScheduler is an abstraction that is specific to TPL - so it offers methods such as QueueTask which deals with Task
object. Using synchronization context instead of task-scheduler (i.e. having a TPL specific implementation of SynchronizationContext) would have made it more tedious to work with task scheduling (and of course, it would be a weakly typed API in context of TPL). So TPL designers have chosen to model an abstract scheduler API which make sense for TPL (that's the purpose of abstraction anyway - right?) - of course, to bridge the gap, FCL contains an internal class SynchronizationContextTaskScheduler
that is wrapper TaskScheduler implementation over SynchronizationContext.
SynchronizationContext was introduced in .NET 2.0 while TPL was introduced in .NET 4. Its interesting to think what FCL designers would have chosen if the sequence was other way round i.e. what if TPL had existed at the time of .NET 2.0. IMO, TaskScheduler could have been used instead of SynchrinizationContext by modelling delgates as task in specific specialization.