Package io.vertx.rxjava3.ext.web
Class FileUpload
- java.lang.Object
- 
- io.vertx.rxjava3.ext.web.FileUpload
 
- 
- All Implemented Interfaces:
- io.vertx.lang.rx.RxDelegate
 
 public class FileUpload extends Object implements io.vertx.lang.rx.RxDelegate Represents a file-upload from an HTTP multipart form submission.NOTE: This class has been automatically generated from the originalnon RX-ified interface using Vert.x codegen.
- 
- 
Field SummaryFields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<FileUpload>__TYPE_ARG
 - 
Constructor SummaryConstructors Constructor Description FileUpload(FileUpload delegate)FileUpload(Object delegate)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancancel()Try to cancel the file upload.StringcharSet()StringcontentTransferEncoding()StringcontentType()Completabledelete()Delete the uploaded file on the disk.booleanequals(Object o)StringfileName()FileUploadgetDelegate()inthashCode()Stringname()static FileUploadnewInstance(FileUpload arg)CompletablerxDelete()Delete the uploaded file on the disk.longsize()StringtoString()StringuploadedFileName()
 
- 
- 
- 
Field Detail- 
__TYPE_ARGpublic static final io.vertx.lang.rx.TypeArg<FileUpload> __TYPE_ARG 
 
- 
 - 
Constructor Detail- 
FileUploadpublic FileUpload(FileUpload delegate) 
 - 
FileUploadpublic FileUpload(Object delegate) 
 
- 
 - 
Method Detail- 
getDelegatepublic FileUpload getDelegate() - Specified by:
- getDelegatein interface- io.vertx.lang.rx.RxDelegate
 
 - 
namepublic String name() - Returns:
- the name of the upload as provided in the form submission
 
 - 
uploadedFileNamepublic String uploadedFileName() - Returns:
- the actual temporary file name on the server where the file was uploaded to.
 
 - 
fileNamepublic String fileName() - Returns:
- the file name of the upload as provided in the form submission
 
 - 
sizepublic long size() - Returns:
- the size of the upload, in bytes
 
 - 
contentTypepublic String contentType() - Returns:
- the content type (MIME type) of the upload
 
 - 
contentTransferEncodingpublic String contentTransferEncoding() - Returns:
- the content transfer encoding of the upload - this describes how the upload was encoded in the form submission.
 
 - 
charSetpublic String charSet() - Returns:
- the charset of the upload
 
 - 
cancelpublic boolean cancel() Try to cancel the file upload.- Returns:
- truewhen the upload was cancelled,- falsewhen the upload is finished and the file is available
 
 - 
deletepublic Completable delete() Delete the uploaded file on the disk.- Returns:
- a future signaling when the file has been deleted
 
 - 
rxDeletepublic Completable rxDelete() Delete the uploaded file on the disk.- Returns:
- a future signaling when the file has been deleted
 
 - 
newInstancepublic static FileUpload newInstance(FileUpload arg) 
 
- 
 
-