There is a long-time request and is called from the "main" (UI) thread. It is planned to move it's call into a separate thread. The problem is that some objects are created in this thread on the heap (main thread will have to work with these pointers).
Questions:
- Is it allowed to delete 'another-thread' objects in the main thread?
- Is it a good idea to delete object in "another" thread.
Thanks