Interface AcDbWorkerMessage<TInput>

Message sent from the main thread to a worker task.

interface AcDbWorkerMessage<TInput = unknown> {
    id: string;
    input: TInput;
}

Type Parameters

  • TInput = unknown

Properties

Properties

id: string

Unique task identifier used to correlate the response.

input: TInput

Task input payload.