コード例 #1
0
        /// <summary>
        /// Remove the data kept for synchronization
        /// </summary>
        public void FlushSyncData()
        {
            try
            {
                _oledbConPool.FlushSyncData();
            }
            catch (Exception e)
            {
                NCacheLog.Error("CacheDbSyncManager", e.ToString());
            }

            try
            {
                _sqlConPool.FlushSyncData();
            }
            catch (Exception e)
            {
                NCacheLog.Error("CacheDbSyncManager", e.ToString());
            }
        }