ControllerJoin Method Naiad Help

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

Blocks the caller until all computation in this controller has terminated.

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

C#
void Join()
Remarks

This method must be called before calling Dispose(), or an error will be raised.
Examples

The typical usage of Join is before the end of the using block for a Controller:
using (Controller controller = NewController.FromArgs(ref args))
{
    /* Computations go here. */

    controller.Join();
}
See Also

Reference