All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sqlite.UnlockNotifyCallback Maven / Gradle / Ivy

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