Skip to content

Commit b899984

Browse files
committed
Add note on observable producers
1 parent 58c6623 commit b899984

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

readme.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,13 @@ void OnItemShipped(ItemShipped e) => // Refresh item status
6969
public void Dispose() => subscription.Dispose();
7070
```
7171

72+
In addition to event producers just invoking `Notify`, they can also be
73+
implemented as `IObservable<TEvent>` directly, which is useful when the
74+
producer is itself an observable sequence.
75+
76+
Both features integrate seamlessly and leverage all the power of
77+
[Reactive Extensions](https://github.com/dotnet/reactive).
78+
7279

7380
## Commands
7481

0 commit comments

Comments
 (0)