Click or drag to resize

InnerJoinOperation Constructor

Initializes a new instance of the InnerJoinOperation class.

Namespace: Ookii.Jumbo.Jet.Jobs.Builder
Assembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public InnerJoinOperation(
	JobBuilder builder,
	IOperationInput outerInput,
	IOperationInput innerInput,
	Type innerJoinRecordReaderType,
	Type outerComparerType,
	Type innerComparerType
)

Parameters

builder  JobBuilder
The job builder.
outerInput  IOperationInput
The outer input for the join operation.
innerInput  IOperationInput
The inner input for the join operation.
innerJoinRecordReaderType  Type
Type of the inner join record reader.
outerComparerType  Type
Type of the comparer used to sort the outer relation. May be . May be a generic type definition with a single type parameter. Both IComparerT and IRawComparerT are supported, but using IRawComparerT is strongly recommended.
innerComparerType  Type
Type of the comparer used to sort the inner relation. May be . May be a generic type definition with a single type parameter. Both IComparerT and IRawComparerT are supported, but using IRawComparerT is strongly recommended.
See Also