I'm making an Angular 2 HTTP get request and in return I get
Observable<Message[]> I want to transform this observable into multiple emit.
So let's say the server returned Message array with length 3.
I would like to get 3 notification in my subscribe call (on for each value in the array) instead of getting one call with the array.
e.g : ['Hello','Hey','Howdy'] - > 'Hello', 'Hey','Howdy'
I found an operator that does transform the array (Observable.for), but this operator takes as an argument an array and not an Observable.