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

vertx.effect.httpclient.PostReq Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
package vertx.effect.httpclient;
import vertx.effect.core.BodyHttpReq;

import static java.util.Objects.requireNonNull;

public class PostReq extends BodyHttpReq {
    public PostReq(final byte[] body) {
        super(requireNonNull(body));
        this.type = TYPE.POST;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy