File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -464,8 +464,7 @@ A one-to-many collection that maps a key to an independent `IDurableRingBuffer<T
464464- ** Fine-Grained Persistence** : Any operation on a single buffer results in a small, specific log-entry, rather than re-serializing all buffers.
465465
466466``` csharp
467- // Get a buffer for "user1".
468- // Since it's new, it will be created with a capacity of 10.
467+ // Get a buffer for "user1", it will be created with a capacity of 10.
469468
470469var buffer1 = collection .EnsureBuffer (" user1" , 10 );
471470buffer1 .Enqueue (" Logged In" );
@@ -562,8 +561,7 @@ A one-to-many collection that maps a key to an independent `IDurableTimeWindowB
562561> This component respects the registered [ ` TimeProvider ` ] ( https://learn.microsoft.com/en-us/dotnet/api/system.timeprovider ) .
563562
564563``` csharp
565- // Get a buffer for "user1".
566- // Since it's new, it will be created with a window of 10 minutes.
564+ // Get a buffer for "user1", it will be created with a window of 10 minutes.
567565
568566var buffer1 = collection .EnsureBuffer (" user1" , TimeSpan .FromMinutes (10 ));
569567buffer1 .Enqueue (" Logged In" );
You can’t perform that action at this time.
0 commit comments