Created June 17, 2013 15:04
-
-
Save JakeWharton/5797571 to your computer and use it in GitHub Desktop.
Revisions
-
JakeWharton created this gist
Jun 17, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ /** * A {@link HttpRequest.ConnectionFactory connection factory} which uses OkHttp. * <p/> * Call {@link HttpRequest#setConnectionFactory(HttpRequest.ConnectionFactory)} with an instance of * this class to enable. */ public class OkConnectionFactory implements HttpRequest.ConnectionFactory { private final OkHttpClient client; public OkConnectionFactory() { this(new OkHttpClient()); } public OkConnectionFactory(OkHttpClient client) { if (client == null) { throw new NullPointerException("Client must not be null."); } this.client = client; } public HttpURLConnection create(URL url) throws IOException { return client.open(url); } public HttpURLConnection create(URL url, Proxy proxy) throws IOException { throw new UnsupportedOperationException( "Per-connection proxy is not supported. Use OkHttpClient's setProxy instead."); } }