We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2a8048 commit b3ddc86Copy full SHA for b3ddc86
app/src/main/java/com/rxjava2/android/samples/ui/operators/BehaviorSubjectExampleActivity.java
@@ -42,6 +42,8 @@ public void onClick(View view) {
42
/* When an observer subscribes to a BehaviorSubject, it begins by emitting the item most
43
* recently emitted by the source Observable (or a seed/default value if none has yet been
44
* emitted) and then continues to emit any other items emitted later by the source Observable(s).
45
+ * It is different from Async Subject as async emits the last value (and only the last value)
46
+ * but the Behavior Subject emits the last and the subsequent values also.
47
*/
48
private void doSomeWork() {
49
0 commit comments