ExtensionMethodsDistinctNodesTTime Method Naiad Help

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

Computes the distinct set of nodes in the input.

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

C#
public static Stream<Node, TTime> DistinctNodes<TTime>(
	this Stream<Node, TTime> nodes
)
where TTime : Object, Time<TTime>

Parameters

nodes
Type: Microsoft.Research.NaiadStreamNode, TTime
The input stream.

Type Parameters

TTime
The type of timestamp on each record.

Return Value

Type: StreamNode, TTime
The stream containing the distinct set of nodes in the input.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type StreamNode, TTime. 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