com.koushikdutta.async.http.AsyncHttpPost Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidasync Show documentation
Show all versions of androidasync Show documentation
Asynchronous socket, http(s) (client+server) and websocket library for android. Based on nio, not threads.
package com.koushikdutta.async.http;
import android.net.Uri;
public class AsyncHttpPost extends AsyncHttpRequest {
public static final String METHOD = "POST";
public AsyncHttpPost(String uri) {
this(Uri.parse(uri));
}
public AsyncHttpPost(Uri uri) {
super(uri, METHOD);
}
}