vertx.effect.httpclient.PutReq Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-effect Show documentation
Show all versions of vertx-effect Show documentation
When actors meet Functional Programming
package vertx.effect.httpclient;
import vertx.effect.core.BodyHttpReq;
import static java.util.Objects.requireNonNull;
public class PutReq extends BodyHttpReq {
public PutReq(final byte[] body) {
super(requireNonNull(body));
this.type = TYPE.PUT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy