calledinvoked
Calledinvoked is a term used in software development to describe a two-phase model of function usage, combining the notions of a call site being identified (called) and the actual execution of the function body (invoked). The term is not part of any formal language specification; it appears in some debugging, profiling, and telemetry contexts to distinguish the preparation or resolution of a function from its runtime execution.
In practice, calledinvoked emphasizes that resolving a function reference (for example, resolving a symbol, a delegate,
Instrumentation and logging often use separate timestamps or events for called and invoked phases, enabling analysis
Example: A log shows: processOrder.called at 12:01:02.123, processOrder.invoked at 12:01:02.135, then processOrder.completed at 12:01:02.250, illustrating the
See also: call, invoke, reflection, dynamic dispatch, profiling, instrumentation.