Sino.Droid.AppMsg.MsgManager.ClearShowing C# (CSharp) Méthode

ClearShowing() public méthode

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