Click or drag to resize

DebugExitHandler Delegate

Represents a method called directly before a computation is left (for tracing/debugging purpose). Applying user-defined computation borders, or e.g. auto-generated rule eval or procedure call borders; but not interpreted sequences, they receive dedicated treatement in the graph processing environment, are debugged directly.

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public delegate void DebugExitHandler(
	string message,
	params Object[] values
)

Parameters

message  String
The message = name of the computation to be left. (Must be the same as message of the corresponding enter, stored on the debug traces stack.)
values  Object
Some values specified at exiting, typically output parameters of a computation call.
See Also