Member Junction
    Preparing search index...

    Base for After events that report on completed operations

    interface AfterEventArgs {
        durationMs?: number;
        errorMessage?: string;
        sourceComponentName?: string;
        success: boolean;
        timestamp: Date;
    }

    Hierarchy (View Summary)

    Index

    Properties

    durationMs?: number

    How long the operation took, in milliseconds

    errorMessage?: string

    Error message if the operation failed

    sourceComponentName?: string

    Optional name of the component that fired the event

    success: boolean

    Whether the operation completed successfully

    timestamp: Date

    When the event was fired