Skip to content

Commit

Permalink
Making method ExecuteAsync virtual. (#16496)
Browse files Browse the repository at this point in the history
Co-authored-by: Kvyatkovsky, Petr <pkvyatkovsky@qulix.com>
  • Loading branch information
PeterKvayt and Kvyatkovsky, Petr authored Aug 14, 2024
1 parent a235591 commit 3a9ef38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public virtual Task StopAsync(CancellationToken cancellationToken)
/// Executes the task.
/// </summary>
/// <param name="state">The task state.</param>
public async void ExecuteAsync(object? state)
public virtual async void ExecuteAsync(object? state)
{
try
{
Expand Down

0 comments on commit 3a9ef38

Please sign in to comment.