0

我想做这样的事情:

public class MyCallable implements Callable<Boolean>, MyObserver
{
    Boolean mSuccess = false;

    @Override
    public Boolean call() throws Exception
    {
        // ... Wait here until myCallback is called ...

        return mSuccess;
    }

    @Override
    public void myCallback()
    {
        if(something) mSuccess = true;
    }
}

所以我可以像这样使用它:

MyCallable callable = new MyCallable();

FutureTask<Boolean> futureTask = new FutureTask<Boolean>(callable);

ExecutorService executor = Executors.newFixedThreadPool(1);
executor.execute(futureTask);

Boolean successfull = futureTask.get();

这个“等待回调被调用”的代码是什么样的?我想我可以只创建一个名为“Boolean mCallbackCalled = false”的成员,然后在while(!mCallbackCalled),但这看起来很hacky......

4

1 回答 1

1

您根本不应该使用执行程序。

相反,创建一个CountDownLatch计数为 1 的,countDown()它在回调中,然后await()在你的调用代码中。

于 2013-10-21T19:46:29.260 回答