File tree 1 file changed +4
-0
lines changed
firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/internal
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ public ExecutorService getExecutor() {
62
62
/**
63
63
* Submits a <code>Callable</code> task for asynchronous execution on the executor.
64
64
*
65
+ * <p>A blocking callable will block an underlying thread.
66
+ *
65
67
* <p>Returns a <code>Task</code> which will be resolved upon successful completion of the
66
68
* callable, or throws an <code>ExecutionException</code> if the callable throws an exception.
67
69
*/
@@ -82,6 +84,8 @@ public <T> Task<T> submit(Callable<T> callable) {
82
84
/**
83
85
* Submits a <code>Runnable</code> task for asynchronous execution on the executor.
84
86
*
87
+ * <p>A blocking runnable will block an underlying thread.
88
+ *
85
89
* <p>Returns a <code>Task</code> which will be resolved with null upon successful completion of
86
90
* the runnable, or throws an <code>ExecutionException</code> if the runnable throws an exception.
87
91
*/
You can’t perform that action at this time.
0 commit comments