FakeAsyncTaskExecutor.java | 38 * This class is thread-safe. As per the contract of the AsyncTaskExecutor, the submit methods must 47 * call to {@link #submit(Object, AsyncTask, Object...)}. 124 public <T> AsyncTask<T, ?, ?> submit(Object identifier, method in class:FakeAsyncTaskExecutor.DelayedExecutor 131 + "Are you calling AsyncTaskExecutor.submit(...) from within the " 141 public <T> AsyncTask<T, ?, ?> submit(Object identifier, AsyncTask<T, ?, ?> task, T... params) { method in class:FakeAsyncTaskExecutor 143 return mBlockingExecutor.submit(identifier, task, params);
|