{ "id": "guide/practical-observable-usage", "title": "Practical observable usage", "contents": "\n\n\n
Here are some examples of domains in which observables are particularly useful.
\nObservables can simplify the implementation of type-ahead suggestions. Typically, a type-ahead has to do a series of separate tasks:
\nWriting this in full JavaScript can be quite involved. With observables, you can use a simple series of RxJS operators:
\nExponential backoff is a technique in which you retry an API after failure, making the time in between retries longer after each consecutive failure, with a maximum number of retries after which the request is considered to have failed. This can be quite complex to implement with promises and other methods of tracking AJAX calls. With observables, it is very easy:
\n