This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Concurrent; | |
using System.Diagnostics.CodeAnalysis; | |
using System.Runtime.CompilerServices; | |
using Ydb.Query; | |
using Ydb.Sdk.Value; | |
namespace Ydb.Sdk.Ado.Session; | |
internal sealed class PoolingSessionSource<T> : ISessionSource where T : PoolingSessionBase<T> | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Diagnostics.CodeAnalysis; | |
using System.Runtime.CompilerServices; | |
using System.Threading.Channels; | |
namespace Ydb.Sdk.Ado.Session; | |
internal sealed class PoolingSessionSource : ISessionSource<IPoolingSession> | |
{ | |
private readonly IPoolingSessionFactory _sessionFactory; |