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: 2.0.0
Syntax
public InnerJoinOperation(
	JobBuilder builder,
	IOperationInput outerInput,
	IOperationInput innerInput,
	Type innerJoinRecordReaderType,
	Type outerComparerType,
	Type innerComparerType
)

Parameters

builder
Type: Ookii.Jumbo.Jet.Jobs.BuilderJobBuilder
The job builder.
outerInput
Type: Ookii.Jumbo.Jet.Jobs.BuilderIOperationInput
The outer input for the join operation.
innerInput
Type: Ookii.Jumbo.Jet.Jobs.BuilderIOperationInput
The inner input for the join operation.
innerJoinRecordReaderType
Type: SystemType
Type of the inner join record reader.
outerComparerType
Type: SystemType
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: SystemType
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