public interface TimeoutStream extends ReadStream<Long>
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
 ReadStream.endHandler(Handler) 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.
| Modifier and Type | Method and Description | 
|---|---|
void | 
cancel()
Cancels the timeout. 
 | 
TimeoutStream | 
endHandler(Handler<Void> endHandler)
Set an end handler. 
 | 
TimeoutStream | 
exceptionHandler(Handler<Throwable> handler)
Set an exception handler on the read stream. 
 | 
TimeoutStream | 
fetch(long amount)
Fetch the specified  
amount of elements. | 
TimeoutStream | 
handler(Handler<Long> handler)
Set a data handler. 
 | 
TimeoutStream | 
pause()
Pause the  
ReadStream, it sets the buffer in fetch mode and clears the actual demand. | 
TimeoutStream | 
resume()
Resume reading, and sets the buffer in  
flowing mode. | 
pipe, pipeTo, pipeToTimeoutStream exceptionHandler(Handler<Throwable> handler)
ReadStreamexceptionHandler in interface ReadStream<Long>exceptionHandler in interface StreamBasehandler - the exception handlerTimeoutStream handler(Handler<Long> handler)
ReadStreamhandler in interface ReadStream<Long>TimeoutStream pause()
ReadStreamReadStream, it sets the buffer in fetch mode and clears the actual demand.
 
 While it's paused, no data will be sent to the data handler.
pause in interface ReadStream<Long>TimeoutStream resume()
ReadStreamflowing mode.
 
 If the ReadStream has been paused, reading will recommence on it.resume in interface ReadStream<Long>TimeoutStream fetch(long amount)
ReadStreamamount of elements. If the ReadStream has been paused, reading will
 recommence with the specified amount of items, otherwise the specified amount will
 be added to the current stream demand.fetch in interface ReadStream<Long>TimeoutStream endHandler(Handler<Void> endHandler)
ReadStreamendHandler in interface ReadStream<Long>void cancel()
handler(Handler) with a null
 argument.Copyright © 2020 Eclipse. All rights reserved.