org.sqlite.UnlockNotifyCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlite-javacpp Show documentation
Show all versions of sqlite-javacpp Show documentation
JDBC Driver for SQLite using JavaCPP
The newest version!
package org.sqlite;
import org.bytedeco.javacpp.FunctionPointer;
import org.bytedeco.javacpp.PointerPointer;
public abstract class UnlockNotifyCallback extends FunctionPointer {
protected UnlockNotifyCallback() {
allocate();
}
private native void allocate();
@SuppressWarnings("unused")
public void call(PointerPointer args, int nArg) {
if (nArg == 0) {
return;
}
notify(args, nArg);
}
protected abstract void notify(PointerPointer args, int nArg);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy