Warning, /frameworks/threadweaver/docs/PORTING.md is written in an unsupported language. File is not indexed.

0001 # Porting to newer versions
0002 
0003 ## From KF5 to KF6
0004 
0005 To update your application from KF5 to KF6 ThreadWeaver:
0006 
0007 * `Collection::stop(JobPointer job)` - argument was removed and now it's just `Collection::stop()`
0008     1. Replace `collection->stop(job)` with `collection->stop()`
0009     2. Replace `sequence->stop(job)` with `sequence->stop()`
0010