Example #1
0
		/// <summary>
		/// Call this to clear the temporary cache of analyses. Minimally do this when
		/// data changes. Ideally no more often than necessary.
		/// </summary>
		public void ResetAnalysisCache()
		{
			CheckDisposed();

			m_loader = null;
		}
Example #2
0
		public void LoadParaData(int hvoPara)
		{
			CheckDisposed();

			if (m_loader == null)
				m_loader = new ParaDataLoader(m_cache);
			m_loader.LoadParaData(hvoPara);
		}