Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
UiDispatcher.cs
1using System;
2using Microsoft.Maui.ApplicationModel;
3
5{
6 public sealed class UiDispatcher : IDispatcherAdapter
7 {
8 public static UiDispatcher Instance { get; } = new UiDispatcher();
9 private UiDispatcher() { }
10
11 public void Post(Action action)
12 {
13 if (action is null) return;
14 MainThread.BeginInvokeOnMainThread(action);
15 }
16 }
17}