后台线程是否可以将消息排入主 UI 线程的处理程序并阻塞,直到该消息得到服务?
这样做的背景是我希望我的远程服务在其主 UI 线程上为每个已发布的操作提供服务,而不是从它接收 IPC 请求的线程池线程。
后台线程是否可以将消息排入主 UI 线程的处理程序并阻塞,直到该消息得到服务?
这样做的背景是我希望我的远程服务在其主 UI 线程上为每个已发布的操作提供服务,而不是从它接收 IPC 请求的线程池线程。
这应该做你需要的。它使用notify()
并wait()
与已知对象一起使此方法本质上是同步的。其中的任何内容都run()
将在 UI 线程上运行,并在doSomething()
完成后返回控制权。这当然会使调用线程进入睡眠状态。
public void doSomething(MyObject thing) {
String sync = "";
class DoInBackground implements Runnable {
MyObject thing;
String sync;
public DoInBackground(MyObject thing, String sync) {
this.thing = thing;
this.sync = sync;
}
@Override
public void run() {
synchronized (sync) {
methodToDoSomething(thing); //does in background
sync.notify(); // alerts previous thread to wake
}
}
}
DoInBackground down = new DoInBackground(thing, sync);
synchronized (sync) {
try {
Activity activity = getFromSomewhere();
activity.runOnUiThread(down);
sync.wait(); //Blocks until task is completed
} catch (InterruptedException e) {
Log.e("PlaylistControl", "Error in up vote", e);
}
}
}