Back to project page my-wallpaper.
The source code is released under:
MIT License
If you think the Android project my-wallpaper 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.koonen.photostream.api; /*w w w.java 2 s . com*/ import java.io.IOException; import java.io.InputStream; public interface ResponseHandler { /** * Processes the responses sent by the HTTP server following a GET request. * * @param in * The stream containing the server's response. * * @throws IOException */ public void handleResponse(InputStream in) throws IOException; }