1 instantiation of SQLiteConnectionPool
Microsoft.CodeAnalysis.Workspaces (1)
Storage\SQLite\v2\SQLiteConnectionPoolService.cs (1)
100new SQLiteConnectionPool(this, faultInjector, databaseFilePath, ownershipLock));
6 references to SQLiteConnectionPool
Microsoft.CodeAnalysis.Workspaces (6)
Storage\SQLite\v2\SQLiteConnectionPool+PooledConnection.cs (2)
14private readonly SQLiteConnectionPool _connectionPool; 17public PooledConnection(SQLiteConnectionPool connectionPool, SqlConnection sqlConnection)
Storage\SQLite\v2\SQLiteConnectionPoolService.cs (3)
34private readonly Dictionary<string, ReferenceCountedDisposable<SQLiteConnectionPool>> _connectionPools = new(); 77public ReferenceCountedDisposable<SQLiteConnectionPool>? TryOpenDatabase( 99pool = new ReferenceCountedDisposable<SQLiteConnectionPool>(
Storage\SQLite\v2\SQLitePersistentStorage.cs (1)
32private readonly ReferenceCountedDisposable<SQLiteConnectionPool> _connectionPool;