codemp/dist/java/src/mp/code/CursorController.java

36 lines
869 B
Java
Raw Normal View History

2024-08-06 23:30:00 +02:00
package mp.code;
import mp.code.data.Cursor;
2024-09-05 02:45:33 +02:00
import mp.code.exceptions.ControllerException;
2024-08-06 23:30:00 +02:00
import java.util.Optional;
2024-08-06 23:30:00 +02:00
public class CursorController {
private final long ptr;
CursorController(long ptr) {
this.ptr = ptr;
}
2024-09-05 02:45:33 +02:00
private static native Cursor try_recv(long self) throws ControllerException;
public Optional<Cursor> tryRecv() throws ControllerException {
return Optional.ofNullable(try_recv(this.ptr));
}
2024-09-05 02:45:33 +02:00
private static native Cursor recv(long self) throws ControllerException;
public Cursor recv() throws ControllerException {
return recv(this.ptr);
2024-08-06 23:30:00 +02:00
}
2024-09-05 02:45:33 +02:00
private static native void send(long self, Cursor cursor) throws ControllerException;
public void send(Cursor cursor) throws ControllerException {
2024-08-06 23:30:00 +02:00
send(this.ptr, cursor);
}
private static native void free(long self);
@Override
protected void finalize() {
2024-08-06 23:30:00 +02:00
free(this.ptr);
}
}