Interface StreamChannel
- All Superinterfaces:
ReadStream<Buffer>, StreamBase, WriteStream<Buffer>
- All Known Subinterfaces:
NetSocket, QuicStream
Represents a channel interface modelling a duplex flow controlled byte oriented stream.
It implements both ReadStream and WriteStream so it can be used with
Pipe to pipe data with flow control.
- Author:
- Julien Viet
-
Method Summary
Modifier and TypeMethodDescriptionclose()Close the channelcloseHandler(Handler<Void> handler) Set ahandlernotified when the channel is closeddrainHandler(Handler<Void> handler) Set a drain handler on the stream.end()Callsclose()endHandler(Handler<Void> endHandler) Set an end handler.exceptionHandler(Handler<Throwable> handler) Set an exception handler on the read stream.fetch(long amount) Fetch the specifiedamountof elements.Set a data handler.pause()Pause theReadStream, it sets the buffer infetchmode and clears the actual demand.resume()Resume reading, and sets the buffer inflowingmode.Tell the operating system to stream a file as specified byfilenamedirectly from disk to the outgoing connection, bypassing userspace altogether (where supported by the underlying operating system.Tell the operating system to stream a file as specified byfilenamedirectly from disk to the outgoing connection, bypassing userspace altogether (where supported by the underlying operating system.Tell the operating system to stream a file as specified byfilenamedirectly from disk to the outgoing connection, bypassing userspace altogether (where supported by the underlying operating system.setWriteQueueMaxSize(int maxSize) Set the maximum size of the write queue tomaxSize.shutdownHandler(Handler<Duration> handler) Set ahandlernotified when the channel is shutdown: the client or server will close the connection within a certain amount of time.Write aStringto the connection, encoded in UTF-8.Write aStringto the connection, encoded using the encodingenc.Methods inherited from interface ReadStream
blockingStream, collect, pipe, pipeToMethods inherited from interface WriteStream
end, write, writeQueueFull
-
Method Details
-
exceptionHandler
Description copied from interface:ReadStreamSet an exception handler on the read stream.- Specified by:
exceptionHandlerin interfaceReadStream<Buffer>- Specified by:
exceptionHandlerin interfaceStreamBase- Specified by:
exceptionHandlerin interfaceWriteStream<Buffer>- Parameters:
handler- the exception handler- Returns:
- a reference to this, so the API can be used fluently
-
handler
Description copied from interface:ReadStreamSet a data handler. As data is read, the handler will be called with the data.- Specified by:
handlerin interfaceReadStream<Buffer>- Returns:
- a reference to this, so the API can be used fluently
-
pause
StreamChannel 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 interfaceReadStream<Buffer>- Returns:
- a reference to this, so the API can be used fluently
-
resume
StreamChannel resume()Description copied from interface:ReadStreamResume reading, and sets the buffer inflowingmode. If theReadStreamhas been paused, reading will recommence on it.- Specified by:
resumein interfaceReadStream<Buffer>- Returns:
- a reference to this, so the API can be used fluently
-
fetch
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<Buffer>- Returns:
- a reference to this, so the API can be used fluently
-
endHandler
Set an end handler. Once the stream has ended, and there is no more data to be read, this handler will be called.This handler might be called after the close handler when the channel is paused and there are still buffers to deliver.
- Specified by:
endHandlerin interfaceReadStream<Buffer>- Returns:
- a reference to this, so the API can be used fluently
-
setWriteQueueMaxSize
Description copied from interface:WriteStreamSet the maximum size of the write queue tomaxSize. You will still be able to write to the stream even if there is more thanmaxSizeitems in the write queue. This is used as an indicator by classes such asPipeto provide flow control. The value is defined by the implementation of the stream, e.g in bytes for aNetSocket, etc...- Specified by:
setWriteQueueMaxSizein interfaceWriteStream<Buffer>- Parameters:
maxSize- the max size of the write stream- Returns:
- a reference to this, so the API can be used fluently
-
drainHandler
Description copied from interface:WriteStreamSet a drain handler on the stream. If the write queue is full, then the handler will be called when the write queue is ready to accept buffers again. SeePipefor an example of this being used.The stream implementation defines when the drain handler, for example it could be when the queue size has been reduced to
maxSize / 2.- Specified by:
drainHandlerin interfaceWriteStream<Buffer>- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
write
-
write
-
sendFile
Tell the operating system to stream a file as specified byfilenamedirectly from disk to the outgoing connection, bypassing userspace altogether (where supported by the underlying operating system. This is a very efficient way to stream files.- Parameters:
filename- file name of the file to send- Returns:
- a future result of the send operation
-
sendFile
Tell the operating system to stream a file as specified byfilenamedirectly from disk to the outgoing connection, bypassing userspace altogether (where supported by the underlying operating system. This is a very efficient way to stream files.- Parameters:
filename- file name of the file to sendoffset- offset- Returns:
- a future result of the send operation
-
sendFile
Tell the operating system to stream a file as specified byfilenamedirectly from disk to the outgoing connection, bypassing userspace altogether (where supported by the underlying operating system. This is a very efficient way to stream files.- Parameters:
filename- file name of the file to sendoffset- offsetlength- length- Returns:
- a future result of the send operation
-
end
-
close
-
closeHandler
Set ahandlernotified when the channel is closed- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
shutdownHandler
Set ahandlernotified when the channel is shutdown: the client or server will close the connection within a certain amount of time. This gives the opportunity to thehandlerto close the channel gracefully before the channel is closed.- Parameters:
handler- the handler notified- Returns:
- a reference to this, so the API can be used fluently
-