FInteractionRuntimeDebouncedSaveExportDelegate is a Blueprint-compatible delegate for Interaction Framework runtime events.
DECLARE_DYNAMIC_DELEGATE_ThreeParams( FInteractionRuntimeDebouncedSaveExportDelegate, UObject*, SnapshotStorage, int32, SaveRevision, bool, bSuccess);
Parameters
Inputs
SnapshotStorage
Storage object that received the debounced export request.
SaveRevision
Save revision exported by the debounced operation.
bSuccess
True when export to the storage object completed successfully.
Use Cases
- Bind Blueprint event handlers to react to runtime interaction changes without polling.
Notes
- Delegate parameters are supplied by the broadcaster; handlers should treat object pointers as runtime references.