Back to project page android-rest-client.
The source code is released under:
Apache License
If you think the Android project android-rest-client 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.dg.libs.rest; /*from w w w .j a va 2s . c o m*/ /** * @author darko.grozdanovski The {@link HttpRequest} interface has the * responsibility to send a request object to the server which is used * for data exchange with the server behind the scenes. It contains * methods that run in threads. */ public interface HttpRequest extends Runnable { /** * This method runs asynchronously in the same thread as the application and * launches a service for further server communication. */ public void executeAsync(); }