addStream abstract method
- Stream stream
override
Sends data from a stream on WebSocket connection. Each data event from
stream
will be send as a single WebSocket frame. The data from stream
must be either String
s, or List<int>
s holding bytes.
Implementation
Future addStream(Stream stream);