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
This destructor does not call close(), but the subclass destructor might. If you are in doubt, call close() before destroying the QIODevice.
If I implement that, it properly fires the aboutToClose() signal, which I need for resource cleanup. The QFCgiRequest may actually also need some signals for that, (like connectionClosed() or requestEnded() (the difference may be keep-alive connections, of which I don't know (yet) how they work in FCGI).
The text was updated successfully, but these errors were encountered:
The project may be stale, but I'm happily using it, so here goes:
QFCgiStream
is a derivedQIODevice
. As the docs for ~QIODevice say:If I implement that, it properly fires the
aboutToClose()
signal, which I need for resource cleanup. TheQFCgiRequest
may actually also need some signals for that, (likeconnectionClosed()
orrequestEnded()
(the difference may be keep-alive connections, of which I don't know (yet) how they work in FCGI).The text was updated successfully, but these errors were encountered: