public SQLitePersistentStorageService(
     SQLiteConnectionPoolService connectionPoolService,
     IPersistentStorageLocationService locationService,
     IPersistentStorageFaultInjector?faultInjector
     ) : this(connectionPoolService, locationService)
 {
     _faultInjector = faultInjector;
 }
Esempio n. 2
0
 public SQLitePersistentStorageService(
     OptionSet options,
     SQLiteConnectionPoolService connectionPoolService,
     IPersistentStorageLocationService locationService)
     : base(locationService)
 {
     _options = options;
     _connectionPoolService = connectionPoolService;
 }
 public SQLitePersistentStorageService(
     SQLiteConnectionPoolService connectionPoolService,
     IPersistentStorageConfiguration configuration,
     IAsynchronousOperationListener asyncListener,
     IPersistentStorageFaultInjector?faultInjector)
     : this(connectionPoolService, configuration, asyncListener)
 {
     _faultInjector = faultInjector;
 }
 public SQLitePersistentStorageService(
     SQLiteConnectionPoolService connectionPoolService,
     IPersistentStorageConfiguration configuration,
     IAsynchronousOperationListener asyncListener)
     : base(configuration)
 {
     _connectionPoolService = connectionPoolService;
     _asyncListener         = asyncListener;
 }
 public SQLitePersistentStorageService(
     OptionSet options,
     SQLiteConnectionPoolService connectionPoolService,
     IPersistentStorageLocationService locationService,
     IAsynchronousOperationListener asyncListener,
     IPersistentStorageFaultInjector?faultInjector)
     : this(options, connectionPoolService, locationService, asyncListener)
 {
     _faultInjector = faultInjector;
 }
 public SQLitePersistentStorageService(
     OptionSet options,
     SQLiteConnectionPoolService connectionPoolService,
     IPersistentStorageLocationService locationService,
     IAsynchronousOperationListener asyncListener)
     : base(locationService)
 {
     _options = options;
     _connectionPoolService = connectionPoolService;
     _asyncListener         = asyncListener;
 }
 public SQLitePersistentStorageService(SQLiteConnectionPoolService connectionPoolService, IPersistentStorageLocationService locationService)
     : base(locationService)
 {
     _connectionPoolService = connectionPoolService;
 }
 public Factory(SQLiteConnectionPoolService connectionPoolService, IAsynchronousOperationListenerProvider asyncOperationListenerProvider)
 {
     _connectionPoolService = connectionPoolService;
     _asyncListener         = asyncOperationListenerProvider.GetListener(FeatureAttribute.PersistentStorage);
 }