Skip to content

Commit c357731

Browse files
feat: create IDriver interface (#210)
1 parent 3e4fc31 commit c357731

File tree

11 files changed

+320
-406
lines changed

11 files changed

+320
-406
lines changed

src/Ydb.Sdk/src/Client/Response.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ public abstract class StreamResponse<TProtoResponse, TResponse>
6363
where TProtoResponse : class
6464
where TResponse : class
6565
{
66-
private readonly Driver.ServerStream<TProtoResponse> _iterator;
66+
private readonly ServerStream<TProtoResponse> _iterator;
6767
private TResponse? _response;
6868
private bool _transportError;
6969

70-
internal StreamResponse(Driver.ServerStream<TProtoResponse> iterator)
70+
internal StreamResponse(ServerStream<TProtoResponse> iterator)
7171
{
7272
_iterator = iterator;
7373
}

0 commit comments

Comments
 (0)