All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.koushikdutta.async.http.AsyncHttpGet Maven / Gradle / Ivy

Go to download

Asynchronous socket, http(s) (client+server) and websocket library for android. Based on nio, not threads.

There is a newer version: 3.1.0
Show newest version
package com.koushikdutta.async.http;

import java.net.URI;

public class AsyncHttpGet extends AsyncHttpRequest {
    public static final String METHOD = "GET";
    
    public AsyncHttpGet(String uri) {
        super(URI.create(uri), METHOD);
    }

    public AsyncHttpGet(URI uri) {
        super(uri, METHOD);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy