io.femo.http.transport.HttpTransport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-jdk7 Show documentation
Show all versions of http-jdk7 Show documentation
An easy to use HTTP API, that supports synchronous and asynchronous execution of HTTP request.
On android only asynchronous driver is supported.
This library has been backported to jdk 7 to retain compatibility with android!
The newest version!
package io.femo.http.transport;
import io.femo.http.Transport;
import java.io.IOException;
import java.net.Socket;
/**
* Created by felix on 2/7/16.
*/
public class HttpTransport implements Transport {
@Override
public Socket openSocket(String host, int port) throws IOException {
return new Socket(host, port);
}
}