~ruther/NosSmooth

ref: d42ac940be2be4953dec8a9853fc5801c48dff29 NosSmooth/Core/NosSmooth.Core/Commands/IPreCommandExecutionEvent.cs -rw-r--r-- 1.2 KiB
d42ac940 — Rutherther feat(core): add command pre and post events 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
//  IPreCommandExecutionEvent.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Threading;
using System.Threading.Tasks;
using NosSmooth.Core.Client;
using NosSmooth.Core.Packets;
using NosSmooth.Packets;
using Remora.Results;

namespace NosSmooth.Core.Commands;

/// <summary>
/// Event executed prior to command handler.
/// </summary>
public interface IPreCommandExecutionEvent
{
    /// <summary>
    /// Execute the command pre execution event.
    /// </summary>
    /// <remarks>
    /// If an error is returned, the command handler won't be called.
    /// </remarks>
    /// <param name="client">The NosTale client.</param>
    /// <param name="command">The command.</param>
    /// <param name="ct">The cancellation token for cancelling the operation.</param>
    /// <typeparam name="TCommand">The type of the command.</typeparam>
    /// <returns>A result that may or may not succeed.</returns>
    public Task<Result> ExecuteBeforeCommandAsync<TCommand>
    (
        INostaleClient client,
        TCommand command,
        CancellationToken ct = default
    )
        where TCommand : ICommand;
}
Do not follow this link