Package de.elo.ix.client.plugin
Interface ExportCallbackFactory
public interface ExportCallbackFactory
This class is responsible for creating and registering ExportCallbacks. ExportCallbacks are special callbacks that
are invoked during the export process. They allow for custom actions to be performed during export, such as adding
additional data to the exported elements.
The class provides methods for registering ExportCallbacks and for creating a new ExportCallbackRegistry. The
ExportCallbackRegistry is a collection of ExportCallbacks that are used during the export process.
- Since:
- 25.00.000.002
-
Method Summary
Modifier and TypeMethodDescriptionvoidregisterCallbacks(ExportCallbackRegistry callbackRegistry) This method is used to register a collection of callbacks that will be triggered during the export process.
-
Method Details
-
registerCallbacks
This method is used to register a collection of callbacks that will be triggered during the export process. Each callback is associated with a specific class of objects to be exported.- Parameters:
callbackRegistry- An instance ofExportCallbackRegistrywhich holds the collection of callbacks to be registered.
-