Skip to content

Commit

Permalink
feat: create IDriver interface (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillKurdyukov authored Nov 7, 2024
1 parent 3e4fc31 commit c357731
Show file tree
Hide file tree
Showing 11 changed files with 320 additions and 406 deletions.
4 changes: 2 additions & 2 deletions src/Ydb.Sdk/src/Client/Response.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ public abstract class StreamResponse<TProtoResponse, TResponse>
where TProtoResponse : class
where TResponse : class
{
private readonly Driver.ServerStream<TProtoResponse> _iterator;
private readonly ServerStream<TProtoResponse> _iterator;
private TResponse? _response;
private bool _transportError;

internal StreamResponse(Driver.ServerStream<TProtoResponse> iterator)
internal StreamResponse(ServerStream<TProtoResponse> iterator)
{
_iterator = iterator;
}
Expand Down
Loading

0 comments on commit c357731

Please sign in to comment.