Skip to content

Instantly share code, notes, and snippets.

View KirillKurdyukov's full-sized avatar
😇
Out sick

Kirill Kurdyukov KirillKurdyukov

😇
Out sick
  • Yandex Database
  • St. Petersburg
View GitHub Profile
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>
{
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;