Uses of Class
io.vertx.mutiny.ext.web.multipart.MultipartForm
Packages that use MultipartForm
-
Uses of MultipartForm in io.vertx.mutiny.ext.web.client
Methods in io.vertx.mutiny.ext.web.client with parameters of type MultipartFormModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<HttpResponse<T>>HttpRequest.sendMultipartForm(MultipartForm body) LikeHttpRequest.send()but with an HTTP requestbodymultimap encoded as form and the content type set tomultipart/form-data.HttpRequest.sendMultipartFormAndAwait(MultipartForm body) LikeHttpRequest.send()but with an HTTP requestbodymultimap encoded as form and the content type set tomultipart/form-data.HttpRequest.sendMultipartFormAndForget(MultipartForm body) LikeHttpRequest.send()but with an HTTP requestbodymultimap encoded as form and the content type set tomultipart/form-data. -
Uses of MultipartForm in io.vertx.mutiny.ext.web.multipart
Fields in io.vertx.mutiny.ext.web.multipart with type parameters of type MultipartFormMethods in io.vertx.mutiny.ext.web.multipart that return MultipartFormModifier and TypeMethodDescriptionAdd an attribute form data part.MultipartForm.binaryFileUpload(String name, String filename, io.vertx.core.buffer.Buffer content, String mediaType) Add a binary file upload form data part.MultipartForm.binaryFileUpload(String name, String filename, String pathname, String mediaType) Add a binary file upload form data part.static MultipartFormMultipartForm.create()static MultipartFormMultipartForm.newInstance(io.vertx.ext.web.multipart.MultipartForm delegate) Creates a new instance of theMultipartForm.MultipartForm.setCharset(String charset) Set thecharsetto use when encoding the form.MultipartForm.setCharset(Charset charset) Set thecharsetto use when encoding the form.MultipartForm.textFileUpload(String name, String filename, io.vertx.core.buffer.Buffer content, String mediaType) Add a text file upload form data part.MultipartForm.textFileUpload(String name, String filename, String pathname, String mediaType) Add a text file upload form data part.