DryadLinqQueryableSubmitAndWait Method (IQueryable)DryadLINQ documentation
Submits a list of DryadLinq queries for execution and waits for the job to complete

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.2.1.0 (0.2.1.0)
Syntax

public static DryadLinqJobInfo SubmitAndWait(
	params IQueryable[] sources
)

Parameters

sources
Type: System.LinqIQueryable
A set of DryadLINQ queries to execute

Return Value

Type: DryadLinqJobInfo
Information about the job being submitted for execution.
Exceptions

ExceptionCondition
DryadLinqExceptionIf the job completes in error or is cancelled.
DryadLinqExceptionIf repeated errors occur while polling for status.
Remarks

Every item in sources must be an DryadLinq IQueryable object that terminates with ToStore() Only one job will be executed, but the job will produce the output associated with each item in sources.
See Also

Reference