Skip to content

Instantly share code, notes, and snippets.

@ghatasheh
Created May 31, 2015 12:04
Show Gist options
  • Save ghatasheh/2d8c07efb83db343d20b to your computer and use it in GitHub Desktop.
Save ghatasheh/2d8c07efb83db343d20b to your computer and use it in GitHub Desktop.
Retrofit cancellable callback
import retrofit.Callback;
import retrofit.RetrofitError;
import retrofit.client.Response;
public class ECallback<T> implements Callback<T> {
private Callback<T> callback;
private boolean canceled;
private ECallback() {}
public ECallback(Callback<T> callback) {
this.callback = callback;
canceled = false;
}
public void cancel() {
canceled = true;
callback = null;
}
@Override
public void success(T o, Response response) {
if (!canceled) {
callback.success(o, response);
}
}
@Override
public void failure(RetrofitError error) {
if (!canceled) {
callback.failure(error);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment