Normal QThread can be terminated using terminate() Slot, thread will terminates based on platform which thread running and based on OS scheduling settings/policies. I know it is not wise to terminate a thread.
My questine is can anyone know is there any similar API for QtConcurrent. Since I started another thread using QtConcurrent API, called map. So I need to abort/cancel the running thread from callstack(only single thread I use). Do we have any API/method for this?
Note: QFutureWatcher having pause/resume/cancel but it seems these are used for threadpool usage context( I mean pause/cancel/resume thread collections), not for individual thread/call stack context.