aboutsummaryrefslogtreecommitdiff
path: root/lib/Net.Messaging.FBM/src/Client
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-10-14 15:41:17 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-10-14 15:41:17 -0400
commit62f9e126912fa9a620a361fb5b88d33506e096fb (patch)
tree78665fe8516c559821aa4358ca9e2734e475415a /lib/Net.Messaging.FBM/src/Client
parent0f0c991891b6be076a9a367627201eceeb6d354e (diff)
some refactoring and tests
Diffstat (limited to 'lib/Net.Messaging.FBM/src/Client')
-rw-r--r--lib/Net.Messaging.FBM/src/Client/FBMClient.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Net.Messaging.FBM/src/Client/FBMClient.cs b/lib/Net.Messaging.FBM/src/Client/FBMClient.cs
index d24aca8..5184c38 100644
--- a/lib/Net.Messaging.FBM/src/Client/FBMClient.cs
+++ b/lib/Net.Messaging.FBM/src/Client/FBMClient.cs
@@ -73,7 +73,7 @@ namespace VNLib.Net.Messaging.FBM.Client
private readonly SemaphoreSlim SendLock;
private readonly ConcurrentDictionary<int, FBMRequest> ActiveRequests;
- private readonly ReusableStore<FBMRequest> RequestRental;
+ private readonly ObjectRental<FBMRequest> RequestRental;
/// <summary>
/// The configuration for the current client
@@ -539,6 +539,7 @@ namespace VNLib.Net.Messaging.FBM.Client
/// <param name="vms">The raw response packet from the server</param>
private void ProcessControlFrame(VnMemoryStream vms)
{
+ Debug("Client control frame received. Size: {size}", vms.Length.ToString());
vms.Dispose();
}