CollectionTRecord, TTimeConcat Method Naiad Help

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

Computes the concatenation of this collection and the other collection.

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#
Collection<TRecord, TTime> Concat(
	Collection<TRecord, TTime> other
)

Parameters

other
Type: Microsoft.Research.Naiad.Frameworks.DifferentialDataflowCollectionTRecord, TTime
The other collection.

Return Value

Type: CollectionTRecord, TTime
The collection containing all records in the two input collections.
Remarks

This operator is stateless. As such, it can be a more efficient alternative to the Union(CollectionTRecord, TTime) operator, when precise multiplicities are not important (e.g. because the output feeds into a Distinct, AggregateTKey, TValue, TOutput(ExpressionFuncTRecord, TKey, ExpressionFuncTRecord, TValue, ExpressionFuncInt64, TValue, TValue, TValue, ExpressionFuncTValue, Boolean, ExpressionFuncTKey, TValue, TOutput), or similarly idempotent operator).
See Also

Reference