From b8999846150692e83560c5f5c9e86cb33782d15e Mon Sep 17 00:00:00 2001 From: Daniel Cazzulino Date: Sat, 27 Jan 2024 01:33:17 -0300 Subject: [PATCH] Add note on observable producers --- readme.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/readme.md b/readme.md index fa45d3e..8580a97 100644 --- a/readme.md +++ b/readme.md @@ -69,6 +69,13 @@ void OnItemShipped(ItemShipped e) => // Refresh item status public void Dispose() => subscription.Dispose(); ``` +In addition to event producers just invoking `Notify`, they can also be +implemented as `IObservable` directly, which is useful when the +producer is itself an observable sequence. + +Both features integrate seamlessly and leverage all the power of +[Reactive Extensions](https://github.com/dotnet/reactive). + ## Commands