Пример #1
0
 /// <summary>
 /// Creates a new builder using an asynchronous data store implementation.
 /// </summary>
 /// <param name="coreAsync">the <see cref="IFeatureStoreCoreAsync"/> implementation</param>
 /// <returns>a builder</returns>
 public static CachingStoreWrapperBuilder Builder(IFeatureStoreCoreAsync coreAsync)
 {
     return(new CachingStoreWrapperBuilder(new FeatureStoreCoreAsyncAdapter(coreAsync)));
 }
Пример #2
0
 internal FeatureStoreCoreAsyncAdapter(IFeatureStoreCoreAsync coreAsync)
 {
     _coreAsync = coreAsync;
 }