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 Type
    Method
    Description
    void
    This method is used to register a collection of callbacks that will be triggered during the export process.
  • Method Details

    • registerCallbacks

      void registerCallbacks(ExportCallbackRegistry callbackRegistry)
      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 of ExportCallbackRegistry which holds the collection of callbacks to be registered.