Click or drag to resize

MergeRecordReader<T>.AddInput Method

Adds the specified input to be read by this record reader.

Namespace:  Ookii.Jumbo.Jet
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public override void AddInput(
	IList<RecordInput> partitions
)

Parameters

partitions
Type: System.Collections.Generic.IList<RecordInput>
The partitions for this input, in the same order as the partition list provided to the constructor.

Implements

IMultiInputRecordReader.AddInput(IList<RecordInput>)
Remarks

Which partitions a multi input record reader is responsible for is specified when that reader is created or when AssignAdditionalPartitions(IList<Int32> ) is called. All calls to AddInput(IList<RecordInput> ) must specify those exact same partitions, in the same order.

If you override this method, you must call the base class implementation.

See Also