Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit af71b79

Browse files
Merge pull request #506 from 38elements/master
Update document
2 parents 0634b0d + 7bbf9e8 commit af71b79

8 files changed

Lines changed: 22 additions & 21 deletions

File tree

doc/api/core/observer.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The Observer and Objects interfaces provide a generalized mechanism for push-bas
2222
## _Observer Methods_ ##
2323

2424
### <a id="rxobservercreateonnext-onerror-oncompleted"></a>`Rx.Observer.create([onNext], [onError], [onCompleted])`
25-
<a href="#rxobservercreateonnext-onerror-oncompleted">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.js#L2862-L2872 "View in source") [&#x24C9;][1]
25+
<a href="#rxobservercreateonnext-onerror-oncompleted">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js#L1828-L1833 "View in source") [&#x24C9;][1]
2626

2727
Creates an observer from the specified `onNext`, `onError`, and `onCompleted` actions.
2828

@@ -63,7 +63,7 @@ var subscription = source.subscribe(observer);
6363
* * *
6464

6565
### <a id="rxobserverfromotifierhandler"></a>`Rx.Observer.fromNotifier(handler)`
66-
<a href="#rxobserverfromotifierhandler">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.js#L2862-L2872 "View in source") [&#x24C9;][1]
66+
<a href="#rxobserverfromotifierhandler">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js#L1843-L1851 "View in source") [&#x24C9;][1]
6767

6868
Creates an observer from a notification callback.
6969

@@ -111,7 +111,7 @@ Rx.Observer.fromNotifier(handler).onCompleted();
111111
## _Observer Instance Methods_ ##
112112

113113
### <a id="rxobserverprototypeasobserver"></a>`Rx.Observer.prototype.asObserver()`
114-
<a href="#rxobserverprototypeasobserver">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.js#L2862-L2872 "View in source") [&#x24C9;][1]
114+
<a href="#rxobserverprototypeasobserver">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js#L1810-L1812 "View in source") [&#x24C9;][1]
115115

116116
Hides the identity of an observer.
117117

@@ -169,7 +169,7 @@ console.log(source === sampleObserver);
169169
* * *
170170

171171
### <a id="rxobserverprototypechecked"></a>`Rx.Observer.prototype.checked()`
172-
<a href="#rxobserverprototypechecked">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.js#L2862-L2872 "View in source") [&#x24C9;][1]
172+
<a href="#rxobserverprototypechecked">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js#L1819 "View in source") [&#x24C9;][1]
173173

174174
Checks access to the observer for grammar violations. This includes checking for multiple `onError` or `onCompleted` calls, as well as reentrancy in any of the observer methods.
175175

@@ -211,7 +211,7 @@ checked.onNext(42);
211211
* * *
212212

213213
### <a id="rxobserverprototypenotifyonscheduler"></a>`Rx.Observer.prototype.notifyOn(scheduler)`
214-
<a href="#rxobserverprototypenotifyonscheduler">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.js#L2862-L2872 "View in source") [&#x24C9;][1]
214+
<a href="#rxobserverprototypenotifyonscheduler">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js#L1858-1860 "View in source") [&#x24C9;][1]
215215

216216
Schedules the invocation of observer methods on the given scheduler.
217217

@@ -249,7 +249,7 @@ timeoutObserver.onNext(42);
249249
* * *
250250

251251
### <a id="rxobserverprototypeoncompleted"></a>`Rx.Observer.prototype.onCompleted()`
252-
<a href="#rxobserverprototypeoncompleted">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.js#L2862-L2872 "View in source") [&#x24C9;][1]
252+
<a href="#rxobserverprototypeoncompleted">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js#L1899-L1904 "View in source") [&#x24C9;][1]
253253

254254
Notifies the observer of the end of the sequence.
255255

@@ -278,7 +278,7 @@ observer.onCompleted();
278278
* * *
279279

280280
### <a id="rxobserverprototypeonerrorerror"></a>`Rx.Observer.prototype.onError(error)`
281-
<a href="#rxobserverprototypeonerrorerror">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.js#L2862-L2872 "View in source") [&#x24C9;][1]
281+
<a href="#rxobserverprototypeonerrorerror">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js#L1889-L1894 "View in source") [&#x24C9;][1]
282282

283283
Notifies the observer that an exception has occurred.
284284

@@ -310,7 +310,7 @@ observer.onError(new Error('error!!'));
310310
* * *
311311

312312
### <a id="rxobserverprototypeonnextvalue"></a>`Rx.Observer.prototype.onNext(value)`
313-
<a href="#rxobserverprototypeonnextvalue">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.js#L2862-L2872 "View in source") [&#x24C9;][1]
313+
<a href="#rxobserverprototypeonnextvalue">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js#L1881-L1883 "View in source") [&#x24C9;][1]
314314

315315
Notifies the observer of a new element in the sequence.
316316

@@ -342,7 +342,7 @@ observer.onNext(42);
342342
* * *
343343

344344
### <a id="rxobserverprototypetonotifier"></a>`Rx.Observer.prototype.toNotifier()`
345-
<a href="#rxobserverprototypetonotifier">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.js#L2862-L2872 "View in source") [&#x24C9;][1]
345+
<a href="#rxobserverprototypetonotifier">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js#L1801-L1804 "View in source") [&#x24C9;][1]
346346

347347
Creates a notification callback from an observer.
348348

doc/api/core/operators/asobservable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ File:
4343
Dist:
4444
- [`rx.all.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)
4545
- [`rx.all.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)
46-
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.js)
46+
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js)
4747
- [`rx.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.compat.js)
48-
- [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.js)
48+
- [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.js)
4949
- [`rx.lite.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.compat.js)
5050

5151
NPM Packages:

doc/libraries/rx.coincidence.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Reactive Extensions for JavaScript has a set of coincidence-based operators
55
## Details ##
66

77
Files:
8-
- [`rx.coincidence.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.coincidence.js)
8+
- [`rx.coincidence.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.coincidence.js)
99

1010
NPM Packages:
1111
- [`rx`](https://www.npmjs.org/package/rx)
@@ -14,7 +14,7 @@ NuGet Packages:
1414
- [`RxJS-Coincidence`](http://www.nuget.org/packages/RxJS-Coincidence/)
1515

1616
File Dependencies:
17-
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js) | [`rx.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.compat.js) | [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.lite.js) | [`rx.lite.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.lite.compat.js)
17+
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js) | [`rx.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.compat.js) | [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.js) | [`rx.lite.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.compat.js)
1818

1919
NuGet Dependencies:
2020
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)

doc/libraries/rx.experimental.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Reactive Extensions for JavaScript has a number of operators that are consid
55
## Details ##
66

77
Files:
8-
- [`rx.experimental.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.experimental.js)
8+
- [`rx.experimental.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.experimental.js)
99

1010
NPM Packages:
1111
- [`rx`](https://www.npmjs.org/package/rx)
@@ -15,7 +15,7 @@ NuGet Packages:
1515
- [`RxJS-Experimental`](http://www.nuget.org/packages/RxJS-Experimental/)
1616

1717
File Dependencies:
18-
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js) | [`rx.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.compat.js) | [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.lite.js) | [`rx.lite.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.lite.compat.js)
18+
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js) | [`rx.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.compat.js) | [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.js) | [`rx.lite.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.compat.js)
1919

2020
NuGet Dependencies:
2121
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)

doc/libraries/rx.joinpatterns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Reactive Extensions for JavaScript also supports join calculus in that you c
55
## Details ##
66

77
Files:
8-
- [`rx.joinpatterns.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.joinpatterns.js)
8+
- [`rx.joinpatterns.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.joinpatterns.js)
99

1010
NPM Packages:
1111
- [`rx`](https://www.npmjs.org/package/rx)
@@ -15,7 +15,7 @@ NuGet Packages:
1515
- [`RxJS-JoinPatterns`](http://www.nuget.org/packages/RxJS-JoinPatterns/)
1616

1717
File Dependencies:
18-
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js) | [`rx.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.compat.js) | [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.lite.js) | [`rx.lite.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.lite.compat.js)
18+
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js) | [`rx.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.compat.js) | [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.js) | [`rx.lite.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.compat.js)
1919

2020
NuGet Dependencies:
2121
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)

doc/libraries/rx.lite.extras.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ NuGet Packages:
1414
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)
1515

1616
File Dependencies:
17-
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js) | [`rx.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.compat.js) | [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.lite.js) | [`rx.lite.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.lite.compat.js)
17+
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js) | [`rx.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.compat.js) | [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.js) | [`rx.lite.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.compat.js)
1818

1919
## Included Observable Operators ##
2020

doc/libraries/rx.lite.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ This comes with both `rx.lite.js` which is for use in modern development environ
77
## Details ##
88

99
Files:
10-
- [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.lite.js)
11-
- [`rx.lite.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.lite.compat.js)
10+
- [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.js)
11+
- [`rx.lite.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.compat.js)
1212

1313
NPM Packages:
1414
- `rx-lite`
@@ -52,6 +52,7 @@ NuGet Packages:
5252
- [`concat`](../api/core/operators/concatproto.md)
5353
- [`concatMap`](../api/core/operators/concatmap.md)
5454
- [`connect`](../api/core/operators/connect.md)
55+
- [`debounce`](../api/core/operators/debounce.md)
5556
- [`defaultIfEmpty`](../api/core/operators/defaultifempty.md)
5657
- [`delay`](../api/core/operators/delay.md)
5758
- [`dematerialize`](../api/core/operators/dematerialize.md)

doc/libraries/rx.testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Reactive Extensions for JavaScript has a built-in mechanism for testing all
55
## Details ##
66

77
Files:
8-
- [`rx.testing.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/rx.testing.js)
8+
- [`rx.testing.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.testing.js)
99

1010
NPM Packages:
1111
- [`rx`](https://www.npmjs.org/package/rx)

0 commit comments

Comments
 (0)