You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At BaseMovieRunnable ...{
// ... @OverRide
public void onPreTraktCall() {
getEventBus().post(createLoadingProgressEvent(true));
}
// ... @OverRide
public void onFinished() {
getEventBus().post(createLoadingProgressEvent(false));
}
// ...
}
If I have more than one request in multiple pages, use same Event at same time, it's really work?
The text was updated successfully, but these errors were encountered:
1.this task cannot canceled?
2.about this code :
At BaseMovieRunnable ...{
// ...
@OverRide
public void onPreTraktCall() {
getEventBus().post(createLoadingProgressEvent(true));
}
// ...
@OverRide
public void onFinished() {
getEventBus().post(createLoadingProgressEvent(false));
}
// ...
}
If I have more than one request in multiple pages, use same Event at same time, it's really work?
The text was updated successfully, but these errors were encountered: