Back to project page Boxee-Thumb-Remote.
The source code is released under:
Apache License
If you think the Android project Boxee-Thumb-Remote 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 net.evendanan.android.thumbremote.network; import java.io.IOException; import java.net.URISyntaxException; interface HttpBlocking { Response fetch(String url) throws IOException, URISyntaxException; void close(); }