java.nio.MappedByteBuffer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-rt Show documentation
Show all versions of jtransc-rt Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
package java.nio;
import java.io.FileDescriptor;
public abstract class MappedByteBuffer extends ByteBuffer {
MappedByteBuffer(int mark, int pos, int lim, int cap, FileDescriptor fd) {
super(null);
throw new RuntimeException("Not implemented");
}
MappedByteBuffer(int mark, int pos, int lim, int cap) {
super(null);
throw new RuntimeException("Not implemented");
}
native public final boolean isLoaded();
native public final MappedByteBuffer load();
native public final MappedByteBuffer force();
}