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

Method call

output/java_guava/1.4.13/CacheLoader.java:200–203  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

198 public ListenableFuture<V> reload(final K key, final V oldValue) throws Exception {
199 ListenableFutureTask<V> task = ListenableFutureTask.create(new Callable<V>() {
200 @Override
201 public V call() throws Exception {
202 return loader.reload(key, oldValue).get();
203 }
204 });
205 executor.execute(task);
206 return task;

Callers

nothing calls this directly

Calls 2

getMethod · 0.65
reloadMethod · 0.45

Tested by

no test coverage detected