Amazon.Runtime.Internal.Settings.PersistenceManager.disableWatcher C# (CSharp) Method

disableWatcher() private method

private disableWatcher ( string type ) : void
type string
return void
        void disableWatcher(string type)
        {
            SettingsWatcher sw = null;
            if (this._watchers.TryGetValue(type, out sw))
            {
                sw.Enable = false;
            }
        }