2

I have multiple threads that enqueue actions to the same task using ContinueWith() Is it thread safe? Or should I wrap it with some dedicated lock?

Mugen
  • 8,301
  • 10
  • 62
  • 140

1 Answers1

4

It is thread safe. It even works when the task has already completed.

usr
  • 168,620
  • 35
  • 240
  • 369