if I have a `Flowable` pipeline and I add a `.para...
# rx
m
if I have a
Flowable
pipeline and I add a
.parallel()
at the end to use a parallel subscribe (e.g., subscribing to a
Flowable<ByteArray>
and saving each rail to a separate file), will that make the entire pipeline parallel? or do I need to use .parallel() at the beginning?