Sha256: da41551f9382f66f11febc54c7eb89eb21e47f0e16db7b2f2101c6e61bbe1ea8
Contents?: true
Size: 1.12 KB
Versions: 49
Compression:
Stored size: 1.12 KB
Contents
"use strict"; var retry_1 = require('../operators/retry'); /** * Returns an Observable that mirrors the source Observable with the exception of an `error`. If the source Observable * calls `error`, this method will resubscribe to the source Observable for a maximum of `count` resubscriptions (given * as a number parameter) rather than propagating the `error` call. * * <img src="./img/retry.png" width="100%"> * * Any and all items emitted by the source Observable will be emitted by the resulting Observable, even those emitted * during failed subscriptions. For example, if an Observable fails at first but emits [1, 2] then succeeds the second * time and emits: [1, 2, 3, 4, 5] then the complete stream of emissions and notifications * would be: [1, 2, 1, 2, 3, 4, 5, `complete`]. * @param {number} count - Number of retry attempts before failing. * @return {Observable} The source Observable modified with the retry logic. * @method retry * @owner Observable */ function retry(count) { if (count === void 0) { count = -1; } return retry_1.retry(count)(this); } exports.retry = retry; //# sourceMappingURL=retry.js.map
Version data entries
49 entries across 49 versions & 4 rubygems