namespace ZB.MOM.WW.MxGateway.Worker.Sta; internal interface IStaWorkItem { /// Cancels the work item before it executes on the STA thread. void CancelBeforeExecution(); /// Executes the work item on the STA thread. void Execute(); }