 | JobBuilderSpillSortCombine(IOperationInput, Type, Type) Method |
Sorts the specified input by using a file channel with an output type of
SortSpill.
Namespace: Ookii.Jumbo.Jet.Jobs.BuilderAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic SortOperation SpillSortCombine(
IOperationInput input,
Type combinerType,
Type? comparerType = null
)
Public Function SpillSortCombine (
input As IOperationInput,
combinerType As Type,
Optional comparerType As Type = Nothing
) As SortOperation
public:
SortOperation^ SpillSortCombine(
IOperationInput^ input,
Type^ combinerType,
Type^ comparerType = nullptr
)
member SpillSortCombine :
input : IOperationInput *
combinerType : Type *
?comparerType : Type
(* Defaults:
let _comparerType = defaultArg comparerType null
*)
-> SortOperation
Parameters
- input IOperationInput
- The input.
- combinerType Type
- Type of the combiner task. May be . May be a generic type definition with a single type parameter.
- comparerType Type (Optional)
- Type of the comparer to use. 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.
Return Value
SortOperation
A
SortOperation instance that can be used to further customize the operation.
See Also