use of com.android.example.devsummit.archdemo.util.LifecycleListener in project dev-summit-architecture-demo by yigit.
the class BaseActivity method onStop.
@Override
protected void onStop() {
super.onStop();
for (LifecycleListener callback : mLifecycleListeners) {
callback.onProviderStopped();
}
getComponent().jobManager().cancelJobsInBackground(null, TagConstraint.ALL, mSessionId);
mLifecycleListeners.clear();
}
Aggregations