| InnerJoinOperation Constructor |
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
)
Public Sub New (
builder As JobBuilder,
outerInput As IOperationInput,
innerInput As IOperationInput,
innerJoinRecordReaderType As Type,
outerComparerType As Type,
innerComparerType As Type
)
public:
InnerJoinOperation(
JobBuilder^ builder,
IOperationInput^ outerInput,
IOperationInput^ innerInput,
Type^ innerJoinRecordReaderType,
Type^ outerComparerType,
Type^ innerComparerType
)
new :
builder : JobBuilder *
outerInput : IOperationInput *
innerInput : IOperationInput *
innerJoinRecordReaderType : Type *
outerComparerType : Type *
innerComparerType : Type -> InnerJoinOperation
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