Skip to content

Commit c3f97e5

Browse files
committed
comments
1 parent cc0632a commit c3f97e5

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/SDK/NET/Backend/BackendClient.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ public class BackendClient
1919

2020
private record LoggingData(string message, string category, LogLevel logLevel, string label);
2121

22-
private static HttpClient? _httpGetRequestClient;
23-
private static HttpClient? _httpSendResponseClient;
22+
private static HttpClient? _httpGetRequestClient; // For querying server's request queue
23+
private static HttpClient? _httpSendResponseClient; // For sending response to request to server
24+
2425
private Channel<LoggingData> _loggingQueue = Channel.CreateBounded<LoggingData>(1024);
2526

2627
private int _errorPauseSecs = 0;

0 commit comments

Comments
 (0)