MCPcopy Create free account
hub / github.com/banq/jdonframework / getValue

Method getValue

src/main/java/com/jdon/cache/CacheLine.java:40–48  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

38 }
39
40 public Object getValue() {
41 if (valueRef == null)
42 return null;
43 if (useSoftReference) {
44 return ((java.lang.ref.SoftReference) valueRef).get();
45 } else {
46 return valueRef;
47 }
48 }
49
50 public long getLoadTime() {
51 return loadTime;

Callers 6

getMethod · 0.95
hasExpiredMethod · 0.45
getAuthCookieMethod · 0.45
getCookieMethod · 0.45

Calls 1

getMethod · 0.65

Tested by

no test coverage detected