ComputationOnFrontierChange EventNaiad Help

[This is preliminary documentation and is subject to change.]

An event that is raised each time the frontier changes.

Namespace: Microsoft.Research.Naiad
Assembly: Microsoft.Research.Naiad (in Microsoft.Research.Naiad.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax

C#
event EventHandler<FrontierChangedEventArgs> OnFrontierChange

Value

Type: SystemEventHandlerFrontierChangedEventArgs
Remarks

This event provides a hook for debugging statements that track the progress of a computation.
Examples

computation.OnFrontierChange += (c, f) => { Console.WriteLine("New frontier: {0}", string.Join(", ", f.NewFrontier)); };
See Also

Reference