 | InnerJoinOperation Constructor |
Namespace: Ookii.Jumbo.Jet.Jobs.BuilderAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic 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 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