You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated the Query list Section to bring in consistency across other pages. Removed ModuleId to avoid errors. updated Selector, Component name. Added a sample data set at the end from completion point of view.
Copy file name to clipboardExpand all lines: docs/4-querying-lists.md
+20-4
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,8 @@ re-run queries when the observable emits a new value.
52
52
53
53
This is the magic of AngularFire2.
54
54
55
+
An RxJS Subject is imported below. A Subject is like an Observable, but can multicast to many Observers. Subjects are like EventEmitters: they maintain a registry of many listeners. See, [What is a Subject](http://reactivex.io/rxjs/manual/overview.html#subject) for more information.
56
+
55
57
```ts
56
58
const subject =newSubject(); // import {Subject} from 'rxjs/Subject';
0 commit comments