  | InnerJoinRecordReaderTOuter, TInner, TResultAddInput Method | 
            Adds the specified input to be read by this record reader.
            
Namespace: Ookii.Jumbo.IOAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic override void AddInput(
	IList<RecordInput> partitions
)
Public Overrides Sub AddInput ( 
	partitions As IList(Of RecordInput)
)
public:
virtual void AddInput(
	IList<RecordInput^>^ partitions
) override
abstract AddInput : 
        partitions : IList<RecordInput> -> unit 
override AddInput : 
        partitions : IList<RecordInput> -> unit Parameters
- partitions  IListRecordInput
 - The partitions for this input, in the same order as the partition list provided to the constructor.
 
Implements
IMultiInputRecordReaderAddInput(IListRecordInput)
Remarks
              Which partitions a multi input record reader is responsible for is specified when that reader is created or
              when AssignAdditionalPartitions(IListInt32) is called. All calls to AddInput(IListRecordInput) must specify those
              exact same partitions, in the same order.
            
              If you override this method, you must call the base class implementation.
            
See Also