open class TimeoutStream : ReadStream<Long>
A timeout stream is triggered by a timer, the io.vertx.rxjava.core.Handler will 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 the io.vertx.core.TimeoutStream non RX-ified interface using Vert.x codegen.
TimeoutStream(delegate: TimeoutStream) |
static val __TYPE_ARG: TypeArg<TimeoutStream> |
open fun cancel(): Unit
Cancels the timeout. Note this has the same effect as calling |
|
open fun endHandler(endHandler: Handler<Void>): TimeoutStream |
|
open fun equals(other: Any?): Boolean |
|
open fun exceptionHandler(handler: Handler<Throwable>): TimeoutStream |
|
open fun getDelegate(): TimeoutStream |
|
open fun handler(handler: Handler<Long>): TimeoutStream |
|
open fun hashCode(): Int |
|
open static fun newInstance(arg: TimeoutStream): TimeoutStream |
|
open fun pause(): TimeoutStream |
|
open fun resume(): TimeoutStream |
|
open fun toObservable(): Observable<Long> |
|
open fun toString(): String |