在调用回调方法之前,是否有任何想法阻止http请求? 像这样(如果使用java):
protected void get(HttpRequest request, HttpResponse response)
{
dosomething();
// call some async service
call_some_service(new Callback(){
public void callback(String result)
{
// continue request
request.continue();
}
});
// wait for callback
request.wait();
}
谢谢。
答案 0 :(得分:0)
使用CountDownLatch,计数为1.