Returns a live, read-only view of the map backing this AtomicLongMap.
()
| 313 | |
| 314 | |
| 315 | public Map<K, Long> asMap() { |
| 316 | Map<K, Long> result = asMap; |
| 317 | return (result == null) ? asMap = createAsMap() : result; |
| 318 | } |
| 319 | |
| 320 | private Map<K, Long> createAsMap() { |
| 321 | return Collections.unmodifiableMap(Maps.transformValues( |
nothing calls this directly
no test coverage detected