public OracleStorageConnection(OracleStorage storage) { if (storage == null) { throw new ArgumentNullException("storage"); } _storage = storage; }
public OracleWriteOnlyTransaction(OracleStorage storage) { if (storage == null) { throw new ArgumentNullException("storage"); } _storage = storage; }
public ExpirationManager(OracleStorage storage, TimeSpan checkInterval) { if (storage == null) { throw new ArgumentNullException("storage"); } _storage = storage; _checkInterval = checkInterval; }
public CountersAggregator(OracleStorage storage, TimeSpan interval) { if (storage == null) { throw new ArgumentNullException("storage"); } _storage = storage; _interval = interval; }
public CountersAggregator(OracleStorage storage, TimeSpan interval) { _storage = storage ?? throw new ArgumentNullException(nameof(storage)); _interval = interval; }
public ExpirationManager(OracleStorage storage, TimeSpan checkInterval) { _storage = storage ?? throw new ArgumentNullException(nameof(storage)); _checkInterval = checkInterval; }
public ExpirationManager(OracleStorage storage) : this(storage, TimeSpan.FromHours(1)) { }
public OracleWriteOnlyTransaction(OracleStorage storage) { _storage = storage ?? throw new ArgumentNullException(nameof(storage)); }
public OracleDistributedLock(OracleStorage storage, string resource, TimeSpan timeout) : this(storage.CreateAndOpenConnection(), resource, timeout) { _storage = storage; }
public OracleStorageConnection(OracleStorage storage) { _storage = storage ?? throw new ArgumentNullException(nameof(storage)); }