You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The QThread subclassing in the LinkInterfaces is incorrect and is probably causing various difficult to trace issues. ADSBTCPLink as well. None of these should call moveToThread(this). A worker class or QtConcurrent::run can be used for the MockLink, while the rest are fine with signals/slots as they use asynchronous functions (except for one in TCPLink).
Also Avoid shared_ptr with QObjects.
The text was updated successfully, but these errors were encountered:
The QThread subclassing in the LinkInterfaces is incorrect and is probably causing various difficult to trace issues. ADSBTCPLink as well. None of these should call moveToThread(this). A worker class or QtConcurrent::run can be used for the MockLink, while the rest are fine with signals/slots as they use asynchronous functions (except for one in TCPLink).
Also Avoid shared_ptr with QObjects.
The text was updated successfully, but these errors were encountered: