Esempio n. 1
0
        private bool DestoryFsm(string fullName)
        {
            FsmBase fsm = null;

            if (_fsms.TryGetValue(fullName, out fsm))
            {
                fsm.ShutDown();
                return(_fsms.Remove(fullName));
            }
            return(false);
        }