[This is preliminary documentation and is subject to change.]
Creates a new InputCollectionTRecord in the given computation.
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 InputCollection<TRecord> NewInputCollection<TRecord>( this Computation computation ) where TRecord : Object, IEquatable<TRecord>
Parameters
- computation
- Type: Microsoft.Research.NaiadComputation
The graph manager for the computation.
Type Parameters
- TRecord
- The type of records in the collection.
Return Value
Type: InputCollectionTRecordThe new InputCollectionTRecord.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Computation. 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