Skip to content

Commit a9ab00e

Browse files
committed
Javadoc
1 parent 007d739 commit a9ab00e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/internal/CrashlyticsWorker.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ public ExecutorService getExecutor() {
6262
/**
6363
* Submits a <code>Callable</code> task for asynchronous execution on the executor.
6464
*
65+
* <p>A blocking callable will block an underlying thread.
66+
*
6567
* <p>Returns a <code>Task</code> which will be resolved upon successful completion of the
6668
* callable, or throws an <code>ExecutionException</code> if the callable throws an exception.
6769
*/
@@ -82,6 +84,8 @@ public <T> Task<T> submit(Callable<T> callable) {
8284
/**
8385
* Submits a <code>Runnable</code> task for asynchronous execution on the executor.
8486
*
87+
* <p>A blocking runnable will block an underlying thread.
88+
*
8589
* <p>Returns a <code>Task</code> which will be resolved with null upon successful completion of
8690
* the runnable, or throws an <code>ExecutionException</code> if the runnable throws an exception.
8791
*/

0 commit comments

Comments
 (0)