MCPcopy Index your code
hub / github.com/BoltsFramework/Bolts-Java / callInBackground

Method callInBackground

Bolts/src/bolts/Task.java:223–225  ·  view source on GitHub ↗

Invokes the callable on a background thread using the default thread pool, returning a Task to represent the operation.

(Callable<TResult> callable)

Source from the content-addressed store, hash-verified

221 * represent the operation.
222 */
223 public static <TResult> Task<TResult> callInBackground(Callable<TResult> callable) {
224 return call(callable, backgroundExecutor);
225 }
226
227 /**
228 * Invokes the callable using the given executor, returning a Task to represent the operation.

Callers 5

callMethod · 0.95
thenMethod · 0.95

Calls 1

callMethod · 0.95

Tested by 5

callMethod · 0.76
thenMethod · 0.76