| 28 | import org.jetbrains.annotations.NotNull; |
| 29 | |
| 30 | public final class AsyncMunmapJob implements Job { |
| 31 | |
| 32 | private final MmapCache cache; |
| 33 | |
| 34 | public AsyncMunmapJob() { |
| 35 | this.cache = Files.getMmapCache(); |
| 36 | } |
| 37 | |
| 38 | @Override |
| 39 | public boolean run(int workerId, @NotNull RunStatus runStatus) { |
| 40 | return cache.asyncMunmap(); |
| 41 | } |
| 42 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…