Created
May 31, 2015 12:04
-
-
Save ghatasheh/2d8c07efb83db343d20b to your computer and use it in GitHub Desktop.
Retrofit cancellable callback
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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