Hello,
I am trying to implement the App42 SDK for Java, but i have some issues that i think might be related to some kind of bug.
The problem is i am trying to retrieve the whole list of rooms with the method getAllRooms of the Warp Client, but the callback function onGetAllRoomsDone is never called (there is no communication back for that request).
public void onGetAllRoomsDone (AllRoomsEvent event){
Gdx.app.debug("DEBUG APPWARP:", "onGetAllRoomsDone: "+String.valueOf(event.getResult()));
}
(Gdx.app.debug is the logger for the framework i am using to develop the application, which is LibGDX)
***EDIT***
In particular: My test were done on a modified version of the class WarpController.java
************
Please help me,
thank you