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
Copy file name to clipboardexpand all lines: README.md
+16-10
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
# 🚎 ReflectionEventing
2
2
3
3
[Created with ❤ in Poland by lepo.co](https://dev.lepo.co/)
4
-
Unleash the power of decoupled design with eventing. ReflectionEventing empowers developers to create simple events between services using DI in WPF, WinForms, or CLI applications. By facilitating better Inversion of Control, ReflectionEventing helps reduce coupling, enhancing the modularity and flexibility of your applications.
4
+
ReflectionEventing is a powerful tool for developers looking to create decoupled designs in WPF, WinForms, or CLI applications. By leveraging the power of Dependency Injection (DI) and eventing, ReflectionEventing promotes better Inversion of Control (IoC), reducing coupling and enhancing the modularity and flexibility of your applications.
The repository contains NuGet package source code, which uses C# reflection to register services that can be used to listen for local events.
10
+
This repository houses the source code for the ReflectionEventing NuGet package. The package utilizes C# reflection to register services that can listen for and respond to local events.
In this step, we register our ViewModel as a singleton and add it as a consumer to the event bus. This allows the ViewModel to listen for events published on the bus.
34
36
35
37
```csharp
36
38
IHosthost=Host.CreateDefaultBuilder()
37
39
.ConfigureServices((context, services) =>
38
40
{
39
-
_=services.AddSingleton<MainWindowViewModel>();
40
-
_=services.AddEventBus(e=>
41
+
services.AddSingleton<MainWindowViewModel>();
42
+
services.AddEventBus(e=>
41
43
{
42
-
_=e.AddConsumer<MainWindowViewModel>();
44
+
e.AddConsumer<MainWindowViewModel>();
43
45
});
44
46
}
45
47
)
46
48
.Build();
47
49
```
48
50
49
-
#### Publish your event
51
+
#### 2. Publish Events
52
+
53
+
Here, we create a background service that publishes an event on the event bus. This event could be anything - in this case, we're publishing a `BackgroundTicked` event.
50
54
51
55
```csharp
52
56
publicclassMyBackgroundService(IEventBuseventBus)
@@ -58,7 +62,9 @@ public class MyBackgroundService(IEventBus eventBus)
58
62
}
59
63
```
60
64
61
-
#### Now you can listen for the event
65
+
#### 3. Listen for Events
66
+
67
+
Finally, we implement the `IConsumer<T>` interface in our ViewModel. This allows the ViewModel to consume `BackgroundTicked` events. When a `BackgroundTicked` event is published, the `ConsumeAsync` method is called, and we update the `CurrentTick` property.
@@ -77,7 +83,7 @@ public partial class MainWindowViewModel : ObservableObject, IConsumer<Backgroun
77
83
78
84
## Compilation
79
85
80
-
Use Visual Studio 2022 and invoke the .sln.
86
+
To build the project, use Visual Studio 2022 and open the .sln file.
81
87
82
88
Visual Studio
83
89
**ReflectionEventing** is an Open Source project. You are entitled to download and use the freely available Visual Studio Community Edition to build, run or develop for ReflectionEventing. As per the Visual Studio Community Edition license, this applies regardless of whether you are an individual or a corporate user.
0 commit comments