MCPcopy Index your code
hub / github.com/questdb/questdb / AsyncMunmapJob

Class AsyncMunmapJob

core/src/main/java/io/questdb/std/AsyncMunmapJob.java:30–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28import org.jetbrains.annotations.NotNull;
29
30public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…