concatOther
Concatenate the other streams
Stream.of(1)
.concatOther(new List{ Stream.with(2, 3) })
.subscribe(R.debug, R.debug.apply('Error: '), R.debug.apply('Completed'));
// 1
// 2
// 3
// Completed
Method | Description |
---|---|
concatOther(List | Concat list of streams |
concatOther(Stream) | Concat one stream |
concatOther(Stream, Stream) | Concat two streams |
concatOther(Stream, Stream, Stream) | Concat three streams |