It possible to obtain results from the Worker object (QRunnable subclass) in other way than signals? The reason for this is that I don't think (please correct me if I'm wrong) that signals should be used for sending large amounts of data e.g. like dictionaries with COM MailItem objects from outlook which I processed asynchronously with pythoncom.CoInitialize() or big pd.DataFrames. As I understand, the data transfer through signals/slots is slow. Is there a safe way to return the worker object after QThreadpool finished running so I could retrieve the results attached to it?
Getting results from subthread to main thread in other way than signals
84 Views Asked by LukaszPe At
0
There are 0 best solutions below
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in QT
- C++ template using pointer and non pointer arguments in a QVector
- Using QPointer and QObject::connect with C++11
- qt How to style a QToolBar > QToolButton overflow button?
- Qt - Repeatedly write at beginning of file
- C++ Mongodb driver, not working
- deletion and cleanup of worker thread in Qt crashes
- How to drap item from QTableView to QPushButton?
- get image type from qimage
- C++ QT Getting part from QString
- How to connect a destroyed signal of C++ object from QML?
- How to get shader version from QOpenGLShader?
- Size of Qt QRadioButton able to get smaller, but not larger than default
- error WinSock.h has already been included Boost Windows Qt
- How to call a non-class member function with pointers as parameters with QtConcurrent::run?
- What is the difference between MinGW SEH and MinGW SJLJ?
Related Questions in THREADPOOL
- How to run Parallel tasks inside parallel tasks
- Does the JVM limit the number of threads an Executor can run?
- Change delay of one thread in threadpool
- WCF not handle 1000 call per second
- Is it necessary to end a ThreadPool on Application.Exit()?
- Thread Join() causes Task.RunSynchronously not to finish
- Waiting for ThreadPool to finish
- Python code not executing in order? MySQLdb UPDATE commits in unexpected order
- How to use thread lock inside a buffered reader loop
- Conditional delayed processing
- In MFC the UI related operation (Draw paint) can be performed in worked thread?
- Exception error using C++ Thread Pool Library (CTPL)
- Stack trace of the application specific java threads
- Python: passing Pool objects to a function in different process
- construction of thread using lambda expression
Related Questions in WORKER
- How to ensure in Rails that Resque queues works each on in a different job?
- Worker management for durable queue in Redis
- How to get the current list of Worker Request from IIS using C#?
- Heroku error when trying to launch foreman
- What is the role of the last argument ( $uniqueId ) in PHP Gearman's doNormal()?
- Best way to check multiple tasks done in Celery?
- Implement worker with RabbitMQ Consumer
- Why is my Rails app hanging?
- How to see log on a AWS Worker in PHP?
- Apache can't create more than 400 workers
- Weird HTML5 Worker JavaScript code (messages)
- How can l launch each worker in a multiprocessing.Pool in a new shell?
- How between-graph replication with asynchronous updates in Tensorflow runs?
- Recommendations for adding spot EC2 instances for short-term workload
- How to get the worker info of a task id in JStorm?
Related Questions in QRUNNABLE
- PyQt5 how multiple QRunnable report progress and final result
- Why PySide6 application crashes when hovering over custom button while executing several QRunnables in QThreadPool
- why can't i close a QThreadPool?
- PyQt5 Use a QRunnable to launch other QRunnables
- How to kill the QRunnable in PyQt5?
- Why is GUI responsiveness impaired by a Worker thread?
- What problem causes exit code -1073741819 (0xC0000005) while pyqtSignal.emit()?
- Python crashes when running a log streamer using Qt
- PyQt5; Problem with QRunnable and QThreadPool
- QThreadPool doesn't release memory after QRunnable has ended
- Getting results from subthread to main thread in other way than signals
- Qt GUI application crashes calling QThreadPool start two times
- How to improve my program with Multi-threading
- How do I stop a thread (QRunnable) when clicking on a button?
- Connect QRunnable to a function/method when finished
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?