ExtensionMethodsOnNextTRecord Method (InputCollectionTRecord)Naiad Help

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

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

C#
public static void OnNext<TRecord>(
	this InputCollection<TRecord> input
)
where TRecord : Object, IEquatable<TRecord>

Parameters

input
Type: Microsoft.Research.Naiad.Frameworks.DifferentialDataflowInputCollectionTRecord
The input.

Type Parameters

TRecord
The type of records in the input.

Usage Note

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

This extension method is typically used when a computation has multiple inputs, to "tick" the inputs that have not changed in an epoch.
See Also

Reference