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

Method run

Bolts/src/bolts/Task.java:233–239  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

231 final Task<TResult>.TaskCompletionSource tcs = Task.<TResult> create();
232 executor.execute(new Runnable() {
233 public void run() {
234 try {
235 tcs.setResult(callable.call());
236 } catch (Exception e) {
237 tcs.setError(e);
238 }
239 }
240 });
241 return tcs.getTask();
242 }

Callers 1

executeMethod · 0.80

Calls 5

setResultMethod · 0.80
setErrorMethod · 0.80
continueWithMethod · 0.80
thenMethod · 0.65
callMethod · 0.45

Tested by

no test coverage detected