You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <typeparam name="TSync">Type of the object sync context.</typeparam>
335
335
/// <param name="syncObject">The main object that defines the synchronization context.</param>
336
336
/// <param name="key">The key that represents what value will change.</param>
337
-
/// <param name="condition">The condition funciton that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
337
+
/// <param name="condition">The condition function that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
338
338
/// <param name="closure">The function to execute while under a write lock if the condition remains true.</param>
339
339
/// <param name="millisecondsTimeout">An optional value to allow for timeout.</param>
340
340
/// <param name="throwsOnTimeout">If true, and a millisecondsTimeout value is provided, a TimeoutException will be thrown if the timeout is reached the instead of this method returning false.</param>
@@ -369,7 +369,7 @@ public static bool SynchronizeReadWrite<TSync>(
369
369
/// <param name="syncObject">The main object that defines the synchronization context.</param>
370
370
/// <param name="key">The key that represents what value will change.</param>
371
371
/// <param name="result">The reference to become the result if a result is acquired from the closure during write.</param>
372
-
/// <param name="condition">The condition funciton that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
372
+
/// <param name="condition">The condition function that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
373
373
/// <param name="closure">The function to execute while under a write lock if the condition remains true. 'result' becomes the return value.</param>
374
374
/// <param name="millisecondsTimeout">An optional value to allow for timeout.</param>
375
375
/// <param name="throwsOnTimeout">If true, and a millisecondsTimeout value is provided, a TimeoutException will be thrown if the timeout is reached the instead of this method returning false.</param>
@@ -404,7 +404,7 @@ public static bool SynchronizeReadWrite<TSync, T>(
404
404
/// <typeparam name="TSync">Type of the object sync context.</typeparam>
405
405
/// <param name="syncObject">The main object that defines the synchronization context.</param>
406
406
/// <param name="key">The key that represents what value will change.</param>
407
-
/// <param name="condition">The condition funciton that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
407
+
/// <param name="condition">The condition function that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
408
408
/// <param name="closure">The function to execute while under a write lock if the condition remains true.</param>
409
409
/// <param name="millisecondsTimeout">An optional value to allow for timeout.</param>
410
410
/// <param name="throwsOnTimeout">If true, and a millisecondsTimeout value is provided, a TimeoutException will be thrown if the timeout is reached the instead of this method returning false.</param>
@@ -442,7 +442,7 @@ public static bool SynchronizeReadWriteKeyAndObject<TSync>(
442
442
/// <param name="syncObject">The main object that defines the synchronization context.</param>
443
443
/// <param name="key">The key that represents what value will change.</param>
444
444
/// <param name="result">The reference to become the result if a result is acquired from the closure during write.</param>
445
-
/// <param name="condition">The condition funciton that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
445
+
/// <param name="condition">The condition function that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
446
446
/// <param name="closure">The function to execute while under a write lock if the condition remains true. 'result' becomes the return value.</param>
447
447
/// <param name="millisecondsTimeout">An optional value to allow for timeout.</param>
448
448
/// <param name="throwsOnTimeout">If true, and a millisecondsTimeout value is provided, a TimeoutException will be thrown if the timeout is reached the instead of this method returning false.</param>
@@ -484,7 +484,7 @@ public static bool SynchronizeReadWriteKeyAndObject<TSync, T>(
484
484
/// </summary>
485
485
/// <typeparam name="TSync">Type of the object sync context.</typeparam>
486
486
/// <param name="syncObject">The main object that defines the synchronization context.</param>
487
-
/// <param name="condition">The condition funciton that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
487
+
/// <param name="condition">The condition function that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
488
488
/// <param name="closure">The function to execute while under a write lock if the condition remains true.</param>
489
489
/// <param name="millisecondsTimeout">An optional value to allow for timeout.</param>
490
490
/// <param name="throwsOnTimeout">If true, and a millisecondsTimeout value is provided, a TimeoutException will be thrown if the timeout is reached the instead of this method returning false.</param>
@@ -512,7 +512,7 @@ public static bool SynchronizeReadWrite<TSync>(
512
512
/// <typeparam name="T">Type of the result.</typeparam>
513
513
/// <param name="syncObject">The main object that defines the synchronization context.</param>
514
514
/// <param name="result">The reference to become the result if a result is acquired from the closure during write.</param>
515
-
/// <param name="condition">The condition funciton that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
515
+
/// <param name="condition">The condition function that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
516
516
/// <param name="closure">The function to execute while under a write lock if the condition remains true. 'result' becomes the return value.</param>
517
517
/// <param name="millisecondsTimeout">An optional value to allow for timeout.</param>
518
518
/// <param name="throwsOnTimeout">If true, and a millisecondsTimeout value is provided, a TimeoutException will be thrown if the timeout is reached the instead of this method returning false.</param>
0 commit comments