| JobBuilderSpillSort Method |
Sorts the specified input by using a file channel with an output type of
SortSpill.
Namespace:
Ookii.Jumbo.Jet.Jobs.Builder
Assembly:
Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax public 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
- Type: Ookii.Jumbo.Jet.Jobs.BuilderIOperationInput
The input. - comparerType (Optional)
- Type: SystemType
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
Type:
SortOperation
A
SortOperation instance that can be used to further customize the operation.
See Also