First time here? Check out the FAQ!
![]() | 1 | initial version | |
I have a snippet of code like this :
que.subscribe(new EventListener() {
public void onEvent(Event evt) {
//Do something
}
});
This causes so many request sends to the server. Is it normal ? Do we have any way to avoid it ?