Skip to content

Commit

Permalink
More leftover SafeWait references
Browse files Browse the repository at this point in the history
  • Loading branch information
Piedone committed Feb 22, 2022
1 parent b5df0b4 commit b63f9c2
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions Lombiq.Tests.UI/Helpers/ReliabilityHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ public static void DoWithRetriesOrFail(
/// </param>
/// <param name="timeout">
/// The maximum time allowed for the process to complete. Defaults to the default of <see
/// cref="SafeWait{T}.Timeout"/>.
/// cref="SafeWaitAsync{T}.Timeout"/>.
/// </param>
/// <param name="interval">
/// The polling interval used by <see cref="SafeWait{T}"/>. Defaults to the default of <see
/// cref="SafeWait{T}.PollingInterval"/>.
/// The polling interval used by <see cref="SafeWaitAsync{T}"/>. Defaults to the default of <see
/// cref="SafeWaitAsync{T}.PollingInterval"/>.
/// </param>
/// <exception cref="TimeoutException">
/// Thrown if the operation didn't succeed even after retries within the allotted time.
Expand Down Expand Up @@ -108,11 +108,11 @@ public static async Task DoWithRetriesOrFailAsync(
/// </param>
/// <param name="timeout">
/// The maximum time allowed for the process to complete. Defaults to the default of <see
/// cref="SafeWait{T}.Timeout"/>.
/// cref="SafeWaitAsync{T}.Timeout"/>.
/// </param>
/// <param name="interval">
/// The polling interval used by <see cref="SafeWait{T}"/>. Defaults to the default of <see
/// cref="SafeWait{T}.PollingInterval"/>.
/// The polling interval used by <see cref="SafeWaitAsync{T}"/>. Defaults to the default of <see
/// cref="SafeWaitAsync{T}.PollingInterval"/>.
/// </param>
/// <returns>
/// <see langword="true"/> if <paramref name="processAsync"/> succeeded (regardless of it happening on the first
Expand All @@ -139,11 +139,11 @@ public static async Task<bool> DoWithRetriesAsync(
/// </param>
/// <param name="timeout">
/// The maximum time allowed for the process to complete. Defaults to the default of <see
/// cref="SafeWait{T}.Timeout"/>.
/// cref="SafeWaitAsync{T}.Timeout"/>.
/// </param>
/// <param name="interval">
/// The polling interval used by <see cref="SafeWait{T}"/>. Defaults to the default of <see
/// cref="SafeWait{T}.PollingInterval"/>.
/// The polling interval used by <see cref="SafeWaitAsync{T}"/>. Defaults to the default of <see
/// cref="SafeWaitAsync{T}.PollingInterval"/>.
/// </param>
/// <exception cref="TimeoutException">
/// Thrown if the operation didn't succeed even after retries within the allotted time.
Expand All @@ -168,11 +168,11 @@ public static Task RetryIfStaleOrFailAsync(
/// </param>
/// <param name="timeout">
/// The maximum time allowed for the process to complete. Defaults to the default of <see
/// cref="SafeWait{T}.Timeout"/>.
/// cref="SafeWaitAsync{T}.Timeout"/>.
/// </param>
/// <param name="interval">
/// The polling interval used by <see cref="SafeWait{T}"/>. Defaults to the default of <see
/// cref="SafeWait{T}.PollingInterval"/>.
/// The polling interval used by <see cref="SafeWaitAsync{T}"/>. Defaults to the default of <see
/// cref="SafeWaitAsync{T}.PollingInterval"/>.
/// </param>
/// <returns>
/// <see langword="true"/> if <paramref name="processAsync"/> succeeded (regardless of it happening on the first
Expand All @@ -196,11 +196,11 @@ public static Task<bool> RetryIfStaleAsync(
/// </param>
/// <param name="timeout">
/// The maximum time allowed for the process to complete. Defaults to the default of <see
/// cref="SafeWait{T}.Timeout"/>.
/// cref="SafeWaitAsync{T}.Timeout"/>.
/// </param>
/// <param name="interval">
/// The polling interval used by <see cref="SafeWait{T}"/>. Defaults to the default of <see
/// cref="SafeWait{T}.PollingInterval"/>.
/// The polling interval used by <see cref="SafeWaitAsync{T}"/>. Defaults to the default of <see
/// cref="SafeWaitAsync{T}.PollingInterval"/>.
/// </param>
/// <exception cref="TimeoutException">
/// Thrown if the operation didn't succeed even after retries within the allotted time.
Expand All @@ -221,11 +221,11 @@ public static Task RetryIfNotStaleOrFailAsync(
/// </param>
/// <param name="timeout">
/// The maximum time allowed for the process to complete. Defaults to the default of <see
/// cref="SafeWait{T}.Timeout"/>.
/// cref="SafeWaitAsync{T}.Timeout"/>.
/// </param>
/// <param name="interval">
/// The polling interval used by <see cref="SafeWait{T}"/>. Defaults to the default of <see
/// cref="SafeWait{T}.PollingInterval"/>.
/// The polling interval used by <see cref="SafeWaitAsync{T}"/>. Defaults to the default of <see
/// cref="SafeWaitAsync{T}.PollingInterval"/>.
/// </param>
/// <returns>
/// <see langword="true"/> if <paramref name="processAsync"/> succeeded (regardless of it happening on the first try
Expand Down

0 comments on commit b63f9c2

Please sign in to comment.