Package | Description |
---|---|
io.vertx.rxjava3.ext.web.client | |
io.vertx.rxjava3.ext.web.multipart |
Modifier and Type | Method and Description |
---|---|
Single<HttpResponse<T>> |
HttpRequest.rxSendMultipartForm(MultipartForm body)
Like
HttpRequest.send() but with an HTTP request body multimap encoded as form and the content type
set to multipart/form-data . |
Single<HttpResponse<T>> |
HttpRequest.sendMultipartForm(MultipartForm body)
Like
HttpRequest.send() but with an HTTP request body multimap encoded as form and the content type
set to multipart/form-data . |
Modifier and Type | Field and Description |
---|---|
static io.vertx.lang.rx.TypeArg<MultipartForm> |
MultipartForm.__TYPE_ARG |
Modifier and Type | Method and Description |
---|---|
MultipartForm |
MultipartForm.attribute(String name,
String value)
Add an attribute form data part.
|
MultipartForm |
MultipartForm.binaryFileUpload(String name,
String filename,
Buffer content,
String mediaType)
Add a binary file upload form data part.
|
MultipartForm |
MultipartForm.binaryFileUpload(String name,
String filename,
String pathname,
String mediaType)
Add a binary file upload form data part.
|
static MultipartForm |
MultipartForm.create() |
static MultipartForm |
MultipartForm.newInstance(MultipartForm arg) |
MultipartForm |
MultipartForm.setCharset(Charset charset)
Set the
charset to use when encoding the form. |
MultipartForm |
MultipartForm.setCharset(String charset)
Set the
charset to use when encoding the form. |
MultipartForm |
MultipartForm.textFileUpload(String name,
String filename,
Buffer content,
String mediaType)
Add a text file upload form data part.
|
MultipartForm |
MultipartForm.textFileUpload(String name,
String filename,
String pathname,
String mediaType)
Add a text file upload form data part.
|
Copyright © 2021 Eclipse. All rights reserved.