1 write to Storage
Microsoft.CodeAnalysis.Workspaces (1)
Storage\SQLite\v2\SQLitePersistentStorage.Accessor.cs (1)
56Storage = storage;
13 references to Storage
Microsoft.CodeAnalysis.Workspaces (13)
Storage\SQLite\v2\SQLitePersistentStorage.Accessor.cs (13)
121=> Storage.PerformReadAsync( 138=> Storage.PerformReadAsync( 166Contract.ThrowIfFalse(TaskScheduler.Current == this.Storage.Scheduler.ConcurrentScheduler); 170if (!Storage._shutdownTokenSource.IsCancellationRequested) 172using var _ = this.Storage.GetPooledConnection(out var connection); 180Storage.TryGetStringId(connection, name, allowWrite: false) is int dataNameId) 218=> Storage.PerformWriteAsync( 225Contract.ThrowIfFalse(TaskScheduler.Current == this.Storage.Scheduler.ExclusiveScheduler); 229if (!Storage._shutdownTokenSource.IsCancellationRequested) 231using var _ = this.Storage.GetPooledConnection(out var connection); 237Storage.TryGetStringId(connection, dataName, allowWrite: true) is int dataNameId) 364Contract.ThrowIfFalse(TaskScheduler.Current == this.Storage.Scheduler.ExclusiveScheduler); 381Storage.EnqueueFlushTask();