I have some code to create a new thread, and then a handler and looper within that thread. The calling thread may then post to this handler:
class MyClass {
Handler mHandler = null;
Thread mThread = null;
MyClass() {
mThread = new Thread() {
public void run() {
Looper.prepare();
mHandler = new Handler();
Looper.loop();
}
};
mThread.start();
/* ... */
mHandler.post(...);
}
}
This code is almost directly out of an example in the documentation. But I can't understand how it can be correct. Because mHandler is initialized inside the child thread, no guarantees can be made about when that happens. What stops this code from posting to a null handler in the final line?
If this code is incorrect, then what's the way to make a handler on a newly created thread in a synchronous way?