hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface IAsyncCommand<T>

    Represents a command to be executed asynchronously.

    interface IAsyncCommand<T> {
        args?: T;
        cancellationToken?: HsCancellationToken;
        handler: string;
        id: string;
        scope: string;
    }

    Type Parameters

    • T
    Index

    Properties

    args?: T

    Arguments for the command.

    cancellationToken?: HsCancellationToken

    Optional cancellation token.

    handler: string

    The handler for the command.

    id: string

    The unique ID of the command.

    scope: string

    The scope of the command.