Saxonberg Server API
    Preparing search index...

    Interface ReloadEvent

    Payload shape for the four module.* lifecycle events emitted by HotReloadApi. versionId is the truncated sha256 of the module source bytes at load time; null for Unloaded. previousVersionId carries the version that this transition replaced, or null when there was no prior. exports is the set of class export names from the new module; empty for Unloaded / ReloadFailed. error is present only on ReloadFailed.

    interface ReloadEvent {
        error?: { message: string; stack?: string };
        exports: string[];
        path: string;
        previousVersionId: string | null;
        versionId: string | null;
    }
    Index

    Properties

    error?: { message: string; stack?: string }
    exports: string[]
    path: string
    previousVersionId: string | null
    versionId: string | null