Manager for registering and managing database converters by file type.

This class provides a centralized way to register database converters for different file types (DXF, DWG, etc.) and retrieve the appropriate converter for a given file type. It implements the singleton pattern and provides event notifications when converters are registered or unregistered.

const manager = AcDbDatabaseConverterManager.instance;
const converter = manager.get(AcDbFileType.DXF);
if (converter) {
await converter.read(dxfData, database, 100);
}

Properties

Events that can be triggered by the converter manager.

These events allow applications to respond to converter registration and unregistration.

Type declaration

Accessors

Methods