Click or drag to resize

JobBuilder.SpillSort 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
)

Parameters

input
Type: Ookii.Jumbo.Jet.Jobs.Builder.IOperationInput
The input.
comparerType (Optional)
Type: System.Type
Type of the comparer to use. May be null. May be a generic type definition with a single type parameter. Both IComparer<T> and IRawComparer<T> are supported, but using IRawComparer<T> is strongly recommended.

Return Value

Type: SortOperation
A SortOperation instance that can be used to further customize the operation.
See Also