Back to project page filmster.
The source code is released under:
Apache License
If you think the Android project filmster listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.doodeec.filmster.ServerCommunicator.ServerRequest; /*from w ww .java 2s. co m*/ /** * Created by Dusan Doodeec Bartos on 26.10.2014. * * Interface for handling (cancelling) server requests (i.e. image loading) * Simplified AsyncTask - since calling context does not need an access to all AsyncTask methods */ public interface ServerRequestInterface { /** * @see android.os.AsyncTask#cancel(boolean) */ public boolean cancel(boolean mayInterruptIfRunning); }