Tuesday 20 December 2016

rxjs - What is the purpose of defining Http response as Observable in Angular 2?

We don't really (standard REST apis to my knowledge) keep looking for values of the response over a period of time, unless the response is huge.



Can somebody guide me as (why?) a Http response is modeled as Observable?




What am I missing?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...