(Object id, Object value)
| 85 | } |
| 86 | |
| 87 | @Override |
| 88 | public void put(Object id, Object value) { |
| 89 | near.put(id, value); |
| 90 | remote.put(id, value); |
| 91 | cacheNotify.invalidateKey(cacheKey, id); |
| 92 | } |
| 93 | |
| 94 | @Override |
| 95 | public void removeAll(Set<Object> keys) { |
nothing calls this directly
no test coverage detected