JoltDebugFn typedef

JoltDebugFn = void Function(DebugNodeOperationType type, ReactiveNode node, Link? link)

Function type for debugging reactive system operations.

This callback is invoked whenever a debug operation occurs, allowing you to track the lifecycle and behavior of reactive nodes.

Parameters:

  • type: The type of operation that occurred
  • node: The reactive node involved in the operation
  • link: Optional link information, provided when the operation is related to dependency linking/unlinking

Implementation

typedef JoltDebugFn = void Function(
    DebugNodeOperationType type, ReactiveNode node, Link? link);