-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make ReactiveResilienceStrategy
public
#1460
Conversation
/// <param name="context">The context associated with the callback.</param> | ||
/// <param name="state">The state associated with the callback.</param> | ||
/// <returns> | ||
/// An instance of pending <see cref="ValueTask"/> for asynchronous executions or completed <see cref="ValueTask"/> task for synchronous executions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// An instance of pending <see cref="ValueTask"/> for asynchronous executions or completed <see cref="ValueTask"/> task for synchronous executions. | |
/// An instance of a pending <see cref="ValueTask"/> for asynchronous executions or a completed <see cref="ValueTask"/> task for synchronous executions. |
/// <remarks> | ||
/// <strong>This method is called for both synchronous and asynchronous execution flows.</strong> | ||
/// <para> | ||
/// You can use <see cref="ResilienceContext.IsSynchronous"/> to determine whether the <paramref name="callback"/> is synchronous or asynchronous one. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// You can use <see cref="ResilienceContext.IsSynchronous"/> to determine whether the <paramref name="callback"/> is synchronous or asynchronous one. | |
/// You can use <see cref="ResilienceContext.IsSynchronous"/> to determine whether <paramref name="callback"/> is synchronous or asynchronous. |
Codecov Report
@@ Coverage Diff @@
## main #1460 +/- ##
=======================================
Coverage 83.92% 83.92%
=======================================
Files 274 274
Lines 6506 6506
Branches 1012 1012
=======================================
Hits 5460 5460
Misses 837 837
Partials 209 209
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Details on the issue fix or feature implementation
It is used as a base class for all reactive strategies. It should be public.
Confirm the following