Sino.Droid.AppMsg.MsgManager.ClearShowing C# (CSharp) Method

ClearShowing() public method

public ClearShowing ( ) : void
return void
        public void ClearShowing()
        {
            Queue<AppMsg> showing = new Queue<AppMsg>();
            ObTainShowing(msgQueue, showing);
            ObTainShowing(stickyQueue, showing);
            foreach (AppMsg msg in showing)
            {
                ClearMsg(msg);
            }
        }