Click or drag to resize

AccumulatorTaskTKey, TValueProcessRecord Method

Method called for each record in the task's input.

Namespace:  Ookii.Jumbo.Jet.Tasks
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public override void ProcessRecord(
	Pair<TKey, TValue> record,
	RecordWriter<Pair<TKey, TValue>> output
)

Parameters

record
Type: Ookii.Jumbo.IOPairTKey, TValue
The record to process.
output
Type: Ookii.Jumbo.IORecordWriterPairTKey, TValue
The RecordWriterT to which the task's output should be written.
See Also