Class TimeoutStream
- java.lang.Object
-
- io.vertx.reactivex.core.TimeoutStream
-
- All Implemented Interfaces:
ReadStream<Long>,StreamBase
public class TimeoutStream extends Object implements ReadStream<Long>
A timeout stream is triggered by a timer, theHandlerwill be call when the timer is fired, it can be once or several times depending on the nature of the timer related to this stream. The will be called after the timer handler has been called.Pausing the timer inhibits the timer shots until the stream is resumed. Setting a null handler callback cancels the timer.
NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<TimeoutStream>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description TimeoutStream(TimeoutStream delegate)TimeoutStream(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidcancel()Deprecated.TimeoutStreamendHandler(Handler<Void> endHandler)Deprecated.booleanequals(Object o)TimeoutStreamexceptionHandler(Handler<Throwable> handler)Deprecated.TimeoutStreamfetch(long amount)Deprecated.TimeoutStreamgetDelegate()TimeoutStreamhandler(Handler<Long> handler)Deprecated.inthashCode()static TimeoutStreamnewInstance(TimeoutStream arg)TimeoutStreampause()Deprecated.Pipe<Long>pipe()Deprecated.voidpipeTo(WriteStream<Long> dst)Deprecated.voidpipeTo(WriteStream<Long> dst, Handler<AsyncResult<Void>> handler)Deprecated.TimeoutStreamresume()Deprecated.io.reactivex.CompletablerxPipeTo(WriteStream<Long> dst)Deprecated.io.reactivex.Flowable<Long>toFlowable()io.reactivex.Observable<Long>toObservable()StringtoString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<TimeoutStream> __TYPE_ARG
-
-
Constructor Detail
-
TimeoutStream
public TimeoutStream(TimeoutStream delegate)
-
TimeoutStream
public TimeoutStream(Object delegate)
-
-
Method Detail
-
getDelegate
public TimeoutStream getDelegate()
- Specified by:
getDelegatein interfaceReadStream<Long>- Specified by:
getDelegatein interfaceStreamBase
-
toObservable
public io.reactivex.Observable<Long> toObservable()
- Specified by:
toObservablein interfaceReadStream<Long>
-
toFlowable
public io.reactivex.Flowable<Long> toFlowable()
- Specified by:
toFlowablein interfaceReadStream<Long>
-
pipe
@Deprecated public Pipe<Long> pipe()
Deprecated.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 interfaceReadStream<Long>- Returns:
- a pipe
-
pipeTo
@Deprecated public void pipeTo(WriteStream<Long> dst, Handler<AsyncResult<Void>> handler)
Deprecated.Pipe thisReadStreamto theWriteStream.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
Once this stream has ended or failed, the write stream will be ended and the
handlerwill be called with the result.- Specified by:
pipeToin interfaceReadStream<Long>- Parameters:
dst- the destination write streamhandler-
-
pipeTo
@Deprecated public void pipeTo(WriteStream<Long> dst)
Deprecated.Pipe thisReadStreamto theWriteStream.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
Once this stream has ended or failed, the write stream will be ended and the
handlerwill be called with the result.- Specified by:
pipeToin interfaceReadStream<Long>- Parameters:
dst- the destination write stream
-
rxPipeTo
@Deprecated public io.reactivex.Completable rxPipeTo(WriteStream<Long> dst)
Deprecated.Pipe thisReadStreamto theWriteStream.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
Once this stream has ended or failed, the write stream will be ended and the
handlerwill be called with the result.- Specified by:
rxPipeToin interfaceReadStream<Long>- Parameters:
dst- the destination write stream- Returns:
-
exceptionHandler
@Deprecated public TimeoutStream exceptionHandler(Handler<Throwable> handler)
Deprecated.Description copied from interface:ReadStreamSet an exception handler on the read stream.- Specified by:
exceptionHandlerin interfaceReadStream<Long>- Specified by:
exceptionHandlerin interfaceStreamBase- Parameters:
handler- the exception handler- Returns:
- a reference to this, so the API can be used fluently
-
handler
@Deprecated public TimeoutStream handler(Handler<Long> handler)
Deprecated.Description copied from interface:ReadStreamSet a data handler. As data is read, the handler will be called with the data.- Specified by:
handlerin interfaceReadStream<Long>- Returns:
- a reference to this, so the API can be used fluently
-
pause
@Deprecated public TimeoutStream pause()
Deprecated.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 interfaceReadStream<Long>- Returns:
- a reference to this, so the API can be used fluently
-
resume
@Deprecated public TimeoutStream resume()
Deprecated.Description copied from interface:ReadStreamResume reading, and sets the buffer inflowingmode. If theReadStreamhas been paused, reading will recommence on it.- Specified by:
resumein interfaceReadStream<Long>- Returns:
- a reference to this, so the API can be used fluently
-
fetch
@Deprecated public TimeoutStream fetch(long amount)
Deprecated.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 interfaceReadStream<Long>- Returns:
- a reference to this, so the API can be used fluently
-
endHandler
@Deprecated public TimeoutStream endHandler(Handler<Void> endHandler)
Deprecated.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 interfaceReadStream<Long>- Returns:
- a reference to this, so the API can be used fluently
-
cancel
@Deprecated public void cancel()
Deprecated.Cancels the timeout. Note this has the same effect as callinghandler(io.vertx.core.Handler<java.lang.Long>)with a null argument.
-
newInstance
public static TimeoutStream newInstance(TimeoutStream arg)
-
-