コード例 #1
0
 public QueryIndexManager(IDictionary props, Topologies.Local.IndexedLocalCache cache, string cacheName)
 {
     _indexMap  = new Hashtable();
     _cache     = cache;
     _props     = props;
     _cacheName = cacheName;
 }
コード例 #2
0
 public void Dispose()
 {
     if (_asyncProcessor != null)
     {
         _asyncProcessor.Stop();
         _asyncProcessor = null;
     }
     if (_indexMap != null)
     {
         _indexMap.Clear();
         _indexMap = null;
     }
     _cache = null;
 }
コード例 #3
0
 public QueryIndexManager(IDictionary props, Topologies.Local.IndexedLocalCache cache, string cacheName)
 {
     _indexMap = new Hashtable();
     _cache = cache;
     _props = props;
     _cacheName = cacheName;
 }
コード例 #4
0
 internal TagIndexManager(IDictionary props, Topologies.Local.IndexedLocalCache cache, string cacheName)
     : base(props, cache, cacheName)
 {
 }
コード例 #5
0
 public void Dispose()
 {
     if (_asyncProcessor != null)
     {
         _asyncProcessor.Stop();
         _asyncProcessor = null;
     }
     if (_indexMap != null)
     {
         _indexMap.Clear();
         _indexMap = null;
     }
     _cache = null;
     
 }