  | MultiRecordReaderT Constructor | 
Namespace: Ookii.Jumbo.IOAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic MultiRecordReader(
	IEnumerable<int> partitions,
	int totalInputCount,
	bool allowRecordReuse,
	int bufferSize,
	CompressionType compressionType
)
Public Sub New ( 
	partitions As IEnumerable(Of Integer),
	totalInputCount As Integer,
	allowRecordReuse As Boolean,
	bufferSize As Integer,
	compressionType As CompressionType
)
public:
MultiRecordReader(
	IEnumerable<int>^ partitions, 
	int totalInputCount, 
	bool allowRecordReuse, 
	int bufferSize, 
	CompressionType compressionType
)
new : 
        partitions : IEnumerable<int> * 
        totalInputCount : int * 
        allowRecordReuse : bool * 
        bufferSize : int * 
        compressionType : CompressionType -> MultiRecordReaderParameters
- partitions  IEnumerableInt32
 - The partitions that this multi input record reader will read.
 - totalInputCount  Int32
 - The total number of input readers that this record reader will have.
 - allowRecordReuse  Boolean
 -  if the record reader may reuse record instances; otherwise, .
 - bufferSize  Int32
 - The buffer size to use to read input files.
 - compressionType  CompressionType
 - The compression type to us to read input files.
 
See Also