1

I'm looking for some simple async workaround like GCD but in QT, is there any kind of this or only threads and workers?

htzfun
  • 1,231
  • 10
  • 41

1 Answers1

3

Simply put: what is there in Qt for implementing task-based concurrency?

The feature is called Qt Concurrent. I recall we were stopped short of using this feature as long as it is the only Qt feature that enables exceptions but the project implementation guidelines were strongly against exceptions. Also there is Parallel Patterns Library to name one if the platform is Windows. You may also find interesting info here: Microsoft's Parallel Patterns Library: anyone looked to see how hard it'd be to port to POSIX / Linux?

Community
  • 1
  • 1
Alexander V
  • 8,351
  • 4
  • 38
  • 47