Package io.vertx.reactivex.core.http
Class HttpServerFileUpload
- java.lang.Object
- 
- io.vertx.reactivex.core.http.HttpServerFileUpload
 
- 
- All Implemented Interfaces:
- io.vertx.lang.rx.RxDelegate,- ReadStream<Buffer>,- StreamBase
 
 public class HttpServerFileUpload extends Object implements io.vertx.lang.rx.RxDelegate, ReadStream<Buffer> Represents an file upload from an HTML FORM.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<HttpServerFileUpload>__TYPE_ARG
 - 
Constructor SummaryConstructors Constructor Description HttpServerFileUpload(HttpServerFileUpload delegate)HttpServerFileUpload(Object delegate)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancancelStreamToFileSystem()Try to cancel the file system streaming, the streamed file will be deleted.Stringcharset()StringcontentTransferEncoding()StringcontentType()HttpServerFileUploadendHandler(Handler<Void> endHandler)Set an end handler.booleanequals(Object o)HttpServerFileUploadexceptionHandler(Handler<Throwable> handler)Set an exception handler on the read stream.HttpServerFileUploadfetch(long amount)Fetch the specifiedamountof elements.AsyncFilefile()Stringfilename()HttpServerFileUploadgetDelegate()HttpServerFileUploadhandler(Handler<Buffer> handler)Set a data handler.inthashCode()booleanisSizeAvailable()Stringname()static HttpServerFileUploadnewInstance(HttpServerFileUpload arg)HttpServerFileUploadpause()Pause theReadStream, it sets the buffer infetchmode and clears the actual demand.Pipe<Buffer>pipe()Pause this stream and return a to transfer the elements of this stream to a destination .Future<Void>pipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.HttpServerFileUploadresume()Resume reading, and sets the buffer inflowingmode.CompletablerxPipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.CompletablerxStreamToFileSystem(String filename)Stream the content of this upload to the given file on storage.longsize()The size of the upload may not be available until it is all read.Future<Void>streamToFileSystem(String filename)Stream the content of this upload to the given file on storage.Flowable<Buffer>toFlowable()Observable<Buffer>toObservable()StringtoString()
 
- 
- 
- 
Field Detail- 
__TYPE_ARGpublic static final io.vertx.lang.rx.TypeArg<HttpServerFileUpload> __TYPE_ARG 
 
- 
 - 
Constructor Detail- 
HttpServerFileUploadpublic HttpServerFileUpload(HttpServerFileUpload delegate) 
 - 
HttpServerFileUploadpublic HttpServerFileUpload(Object delegate) 
 
- 
 - 
Method Detail- 
getDelegatepublic HttpServerFileUpload getDelegate() - Specified by:
- getDelegatein interface- ReadStream<Buffer>
- Specified by:
- getDelegatein interface- io.vertx.lang.rx.RxDelegate
- Specified by:
- getDelegatein interface- StreamBase
 
 - 
toObservablepublic Observable<Buffer> toObservable() - Specified by:
- toObservablein interface- ReadStream<Buffer>
 
 - 
toFlowablepublic Flowable<Buffer> toFlowable() - Specified by:
- toFlowablein interface- ReadStream<Buffer>
 
 - 
pipepublic Pipe<Buffer> pipe() Pause this stream and return a to transfer the elements of this stream to a destination . The stream will be resumed when the pipe will be wired to aWriteStream.- Specified by:
- pipein interface- ReadStream<Buffer>
- Returns:
- a pipe
 
 - 
pipeTopublic Future<Void> pipeTo(WriteStream<Buffer> dst) Pipe thisReadStreamto theWriteStream.Elements emitted by this stream will be written to the write stream until this stream ends or fails. - Specified by:
- pipeToin interface- ReadStream<Buffer>
- Parameters:
- dst- the destination write stream
- Returns:
- a future notified when the write stream will be ended with the outcome
 
 - 
rxPipeTopublic Completable rxPipeTo(WriteStream<Buffer> dst) Pipe thisReadStreamto theWriteStream.Elements emitted by this stream will be written to the write stream until this stream ends or fails. - Specified by:
- rxPipeToin interface- ReadStream<Buffer>
- Parameters:
- dst- the destination write stream
- Returns:
- a future notified when the write stream will be ended with the outcome
 
 - 
exceptionHandlerpublic HttpServerFileUpload exceptionHandler(Handler<Throwable> handler) Description copied from interface:ReadStreamSet an exception handler on the read stream.- Specified by:
- exceptionHandlerin interface- ReadStream<Buffer>
- Specified by:
- exceptionHandlerin interface- StreamBase
- Parameters:
- handler- the exception handler
- Returns:
- a reference to this, so the API can be used fluently
 
 - 
handlerpublic HttpServerFileUpload handler(Handler<Buffer> handler) Description copied from interface:ReadStreamSet a data handler. As data is read, the handler will be called with the data.- Specified by:
- handlerin interface- ReadStream<Buffer>
- Returns:
- a reference to this, so the API can be used fluently
 
 - 
endHandlerpublic HttpServerFileUpload endHandler(Handler<Void> endHandler) Description copied from interface:ReadStreamSet an end handler. Once the stream has ended, and there is no more data to be read, this handler will be called.- Specified by:
- endHandlerin interface- ReadStream<Buffer>
- Returns:
- a reference to this, so the API can be used fluently
 
 - 
pausepublic HttpServerFileUpload pause() Description copied from interface:ReadStreamPause theReadStream, it sets the buffer infetchmode and clears the actual demand.While it's paused, no data will be sent to the data handler.- Specified by:
- pausein interface- ReadStream<Buffer>
- Returns:
- a reference to this, so the API can be used fluently
 
 - 
resumepublic HttpServerFileUpload resume() Description copied from interface:ReadStreamResume reading, and sets the buffer inflowingmode. If theReadStreamhas been paused, reading will recommence on it.- Specified by:
- resumein interface- ReadStream<Buffer>
- Returns:
- a reference to this, so the API can be used fluently
 
 - 
fetchpublic HttpServerFileUpload fetch(long amount) Description copied from interface:ReadStreamFetch the specifiedamountof elements. If theReadStreamhas been paused, reading will recommence with the specifiedamountof items, otherwise the specifiedamountwill be added to the current stream demand.- Specified by:
- fetchin interface- ReadStream<Buffer>
- Returns:
- a reference to this, so the API can be used fluently
 
 - 
streamToFileSystempublic Future<Void> streamToFileSystem(String filename) Stream the content of this upload to the given file on storage.If the stream has a failure or is cancelled the created file will be deleted. - Parameters:
- filename- the name of the file
- Returns:
 
 - 
rxStreamToFileSystempublic Completable rxStreamToFileSystem(String filename) Stream the content of this upload to the given file on storage.If the stream has a failure or is cancelled the created file will be deleted. - Parameters:
- filename- the name of the file
- Returns:
 
 - 
cancelStreamToFileSystempublic boolean cancelStreamToFileSystem() Try to cancel the file system streaming, the streamed file will be deleted.- Returns:
- truewhen the stream is cancelled, otherwise it means that stream is finished
 
 - 
filenamepublic String filename() - Returns:
- the filename which was used when upload the file.
 
 - 
namepublic String name() - Returns:
- the name of the attribute
 
 - 
contentTypepublic String contentType() - Returns:
- the content type for the upload
 
 - 
contentTransferEncodingpublic String contentTransferEncoding() - Returns:
- the contentTransferEncoding for the upload
 
 - 
charsetpublic String charset() - Returns:
- the charset for the upload
 
 - 
sizepublic long size() The size of the upload may not be available until it is all read. CheckisSizeAvailable()to determine this- Returns:
- the size of the upload (in bytes)
 
 - 
isSizeAvailablepublic boolean isSizeAvailable() - Returns:
- trueif the size of the upload can be retrieved via- size().
 
 - 
filepublic AsyncFile file() - Returns:
- the async uploaded file when streamToFileSystem(java.lang.String)has been used and the file is available
 
 - 
newInstancepublic static HttpServerFileUpload newInstance(HttpServerFileUpload arg) 
 
- 
 
-