ComputationJoin Method Naiad Help

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

Blocks until all computation in this graph has termintaed.

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 after calling Activate and 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 Computation:
using (Computation computation = controller.NewComputation())
{
    /* Dataflow graph defined here. */

    computation.Activate();

    /* Inputs supplied here. */

    computation.Join();
}
See Also

Reference

ComputationJoin