is there a better way to expose a `java.util.Strea...
# rx
j
is there a better way to expose a
java.util.Stream<T>
as a
Publisher<T>
than
Iterable { stream.iterator() }.toFlowable().doFinally(stream::close)
?