 | JobBuilderSpillSort 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 SpillSort(
IOperationInput input,
Type? comparerType = null
)
Public Function SpillSort (
input As IOperationInput,
Optional comparerType As Type = Nothing
) As SortOperation
public:
SortOperation^ SpillSort(
IOperationInput^ input,
Type^ comparerType = nullptr
)
member SpillSort :
input : IOperationInput *
?comparerType : Type
(* Defaults:
let _comparerType = defaultArg comparerType null
*)
-> SortOperation
Parameters
- input IOperationInput
- The input.
- 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