Plugin Development Guide¶
Learn how to extend FLYNC with custom converters and transformations.
Overview¶
The plugin system is built around:
Create custom format converters (especially useful for complex and/or external data formats like ARXML)
Extend core functionality
Plugin Architecture¶
Each plugin is a self-contained module that implements the converter interface. Plugins follow a standard structure and lifecycle:
Initialization: Plugin is loaded and configured
Registration: Plugin registers its capabilities
Execution: Plugin processes data during conversion
Cleanup: Resources are released after use