I have two questions:
- Can we start/execute an Async Task within a worker thread?
- If yes, the methods
onPreExecute(),onProgressUpdate(Progress...)andonPostExecute(Result)are invoked on the UI thread?
I wanna know that because I have a TCP connection running on a worker thread and when a packet is received I wanna start a new thread to make the parse of this packet and after that refresh some data structures on the UI thread.
Thanks in advance!