Skip to content

Commit 4a2a963

Browse files
committed
remove subscription cache field
1 parent cff7f5f commit 4a2a963

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/GraphQL.Client/GraphQLHttpClient.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
using System;
2-
using System.Collections.Concurrent;
32
using System.Diagnostics;
43
using System.IO;
54
using System.Linq;
65
using System.Net.Http;
76
using System.Net.Http.Headers;
8-
using System.Runtime.CompilerServices;
97
using System.Threading;
108
using System.Threading.Tasks;
119
using GraphQL.Client.Abstractions;
@@ -20,7 +18,6 @@ public class GraphQLHttpClient : IGraphQLClient
2018
private GraphQLHttpWebSocket GraphQlHttpWebSocket => _lazyHttpWebSocket.Value;
2119

2220
private readonly CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource();
23-
private readonly ConcurrentDictionary<Tuple<GraphQLRequest, Type>, object> _subscriptionStreams = new ConcurrentDictionary<Tuple<GraphQLRequest, Type>, object>();
2421

2522
private readonly bool _disposeHttpClient = false;
2623

0 commit comments

Comments
 (0)