(Box b, Dict.Prop<T> what, Box box, T r)
| 90 | |
| 91 | |
| 92 | private static <T> void recordGet(Box b, Dict.Prop<T> what, Box box, T r) { |
| 93 | |
| 94 | IdempotencyMap<BiConsumer<Box, Object>> watch = what.getAttribute(Missing.watchRead); |
| 95 | if (watch != null) { |
| 96 | watch.values().forEach(x -> x.accept(box, r)); |
| 97 | } |
| 98 | |
| 99 | if (suspended) return; |
| 100 | synchronized (log) { |
| 101 | log.add(new Log(read, b, what, box, r)); |
| 102 | trim1(); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | private static <T> void recordSet(Box b, Dict.Prop<T> what, Box box, T r, T previously) { |
| 107 |