Channel<T>.fromStream constructor

Channel<T>.fromStream(
  1. Stream<T> stream
)

Implementation

factory Channel.fromStream(Stream<T> stream) =
    NonBlockingChannel<T>.fromStream;