Results 1 to 3 of 3

Thread: Is it OK to use `waitForReadyRead()` instead of slot for `readyRead()` signal?

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Jun 2017
    Posts
    5
    Thanked 1 Time in 1 Post
    Qt products
    Qt5 Qt/Embedded
    Platforms
    MacOS X Unix/X11 Windows Android

    Default Is it OK to use `waitForReadyRead()` instead of slot for `readyRead()` signal?

    Writing a cross platform app using Qt (including Windows with MinGW). For reading data from SSL socket, I am creating a separate thread. This thread is there for historical reason, because earlier the app was written using C socket/ssl/crypto libraries. Now all these are being replaced with Qt Network library.

    For blocking thread, waitForReadyRead(milliseconds) seems a better choice. Now according to Qt hierarchy:

    QIODevice
    |
    QAbstractSocket
    |
    QTcpSocket
    |
    QSslSocket

    Documentation of QAbstractSocket::waitForReadyRead() suggests:
    Note: This function may fail randomly on Windows. Consider using the event loop and the readyRead() signal if your software will run on Windows.
    But the similar warning is Not mentioned in the QIODevice::waitForReadyRead().

    Question: Is QSslSocket::waitForReadyRead() consistently usable for all the platforms?

    This query is also posted on stackoverflow: https://stackoverflow.com/q/44544684/514235

    ---

    Why am I not using `readyRead()` signal?
    For some strange reason, if I `slot` some method with `readyRead()` then it's not getting called. Moreover, the `QSslSocket::write()` also doesn't work, which works otherwise with above approach. Due to complexity of my code, I am unable to present it here.
    Last edited by iammilind; 15th June 2017 at 08:17. Reason: removing tags

Similar Threads

  1. Connect ReadyRead-Signal with Slot
    By mikrocat in forum Qt Programming
    Replies: 3
    Last Post: 10th November 2015, 13:56
  2. Replies: 10
    Last Post: 3rd January 2015, 12:25
  3. Qextserial on debian linux and readyRead slot
    By zamek42 in forum Qt Programming
    Replies: 11
    Last Post: 18th December 2013, 18:32
  4. QTcpSocket waitForReadyRead() not re-emitting signal
    By alitoh in forum Qt Programming
    Replies: 3
    Last Post: 2nd November 2012, 12:29
  5. Replies: 0
    Last Post: 1st August 2011, 13:06

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.