Options for AcDbDatabaseConverter.read.

Keeps the converter read API extensible without growing positional arguments.

interface AcDbDatabaseConverterReadOptions {
    minimumChunkSize?: number;
    progress?: AcDbConversionProgressCallback;
    sysVars?: Record<string, string | number | boolean>;
    timeout?: number;
}

Properties

minimumChunkSize?: number

Minimum number of items in one processing chunk.

Defaults to converter-specific behavior when omitted.

Optional progress callback invoked as conversion stages advance.

sysVars?: Record<string, string | number | boolean>

System variables to override in the database after HEADER is processed.

timeout?: number

Timeout for parser web worker operations in milliseconds.