Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!
Source Link
toddlermenot

Source of Java9Memory in Chronicle

I got curious on the off-heap mechanism used by the openHFT project and am looking for the class file below (couldn't find anywhere in github) as defined by the source code here:

Class<? extends Memory> java9MemoryClass = Class
                    .forName("software.chronicle.enterprise.core.Java9Memory")
                    .asSubclass(Memory.class);

From the github repository: https://github.com/OpenHFT/Chronicle-Core/blob/master/src/main/java/net/openhft/chronicle/core/OS.java

My question is: Is this class open source? If yes, how does it work? Thanks.

lang-java