StreamNext.fromstream constructor

StreamNext.fromstream(
  1. Socket _socket
)

Implementation

StreamNext.fromstream(Socket _socket) {
  _queue = Queue<Completer<List<int>>>();
  _nfut = 0;
  _npack = 0;
  done = false;
  socket = _socket;
  socket.listen(onData, onError: this.onError, onDone: this.onDone);
}