DryadLinqExtensionBroadCastT Method (IQueryableT, Int32)DryadLINQ documentation
Broadcast a dataset to n partitions.

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 IQueryable<T> BroadCast<T>(
	this IQueryable<T> source,
	int bcnt
)

Parameters

source
Type: System.LinqIQueryableT
The source dataset to broadcast
bcnt
Type: SystemInt32
The number of copies to broadcast

Type Parameters

T
The record type of the source

Return Value

Type: IQueryableT
The output dataset, each partition of which is a copy of source

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

Reference