vertx.effect.httpclient.PatchReq 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 java.util.Objects;
public class PatchReq extends BodyHttpReq {
public PatchReq(final byte[] body) {
super(Objects.requireNonNull(body));
this.type = TYPE.PATCH;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy