in the library , I must implement some interface with this code:
public class newActivity extends Activity implements someEventHandler{
onReq(BaseReq req){ .....}
}
how I get the callback with the same name , so I can get the message send from the server?
public class newActivity extends Activity implements someEventHandler{
onReq(BaseReq req){ .....}
}
how I get the callback with the same name , so I can get the message send from the server?