MCPcopy Create free account
hub / github.com/antlr/codebuff / run

Method run

output/java_guava/1.4.13/LocalCache.java:2399–2407  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2397 final ListenableFuture<V> loadingFuture = loadingValueReference.loadFuture(key, loader);
2398 loadingFuture.addListener(new Runnable() {
2399 @Override
2400 public void run() {
2401 try {
2402 getAndRecordStats(key, hash, loadingValueReference, loadingFuture);
2403 } catch (Throwable t) {
2404 logger.log(Level.WARNING, "Exception thrown during refresh", t);
2405 loadingValueReference.setException(t);
2406 }
2407 }
2408 }, directExecutor());
2409 return loadingFuture;
2410 }

Callers

nothing calls this directly

Calls 3

getAndRecordStatsMethod · 0.95
logMethod · 0.80
setExceptionMethod · 0.45

Tested by

no test coverage detected