namespace ZB.MOM.WW.OtOpcUa.Client.UI.Services; /// /// Abstraction for dispatching actions to the UI thread. /// public interface IUiDispatcher { /// /// Posts an action to be executed on the UI thread. /// /// The action to execute on the UI thread. void Post(Action action); }