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

enableWatcher() private method

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