Soo, I had some small projects going in java / sca...
# announcements
w
Soo, I had some small projects going in java / scala about 2 years ago, but it seems I have really forgotten things, was wondering if you guys could help me interop with this java lib i am attempting to use from kotlin:
Copy code
// I have a function that takes  a `FindCallback` as its parameter
public abstract class FindCallback<T extends ParseObject> extends ParseCallback<List<T>> {
	public abstract void done(List<T> list, ParseException parseException);
	
	@Override
	void internalDone(List<T> list, ParseException parseException) {
		done(list, parseException);
	}
}
Copy code
// This is the function I would like to call
public void findInBackground(FindCallback<T> callback) {
	FindInBackgroundThread task = new FindInBackgroundThread(callback);
	ParseExecutor.runInBackground(task);
}
how do i call the
findInBackground
function?