DryadLinqExtension BroadCast T  Method (IQueryable T , Int32)DryadLINQ documentation
Broadcast a dataset to n partitions.

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

public static IQueryable<T> BroadCast<T>(
	this IQueryable<T> source,
	int bcnt
)

Parameters

source
Type: System.Linq IQueryable T 
The source dataset to broadcast
bcnt
Type: System Int32
The number of copies to broadcast
Type Parameters

T
The record type of the source

Return Value

Type: IQueryable T 
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 IQueryable T . 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