コード例 #1
0
 /// <summary>
 /// Binds the MRU Client to the DataDriver. DataDriver is used
 /// for persistence of cached Objects to target store
 /// </summary>
 /// <param name="parent"></param>
 public void SetDataStores(IMruClient parent)
 {
     Locker.Invoke(() =>
     {
         MruManager.SetDataStores(parent);
     });
 }
コード例 #2
0
 /// <summary>
 /// Binds the MRU Client to the DataDriver. DataDriver is used
 /// for persistence of cached Objects to target store
 /// </summary>
 /// <param name="parent"></param>
 public void SetDataStores(IMruClient parent)
 {
     lock (Locker)
     {
         MruManager.SetDataStores(parent);
     }
 }