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

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

There is a newer version: 5.0.0
Show newest version
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