namespace ZB.MOM.WW.LmxOpcUa.Client.UI.Services; /// /// Dispatcher that executes actions synchronously on the calling thread. /// Used for unit testing where no UI thread is available. /// public sealed class SynchronousUiDispatcher : IUiDispatcher { public void Post(Action action) { action(); } }