Click or drag to resize

GenerateInt32PairTaskT Class

Generates a key/value pair for each record in the input where the value is an Int32.
Inheritance Hierarchy
SystemObject
  Ookii.Jumbo.JetConfigurable
    Ookii.Jumbo.Jet.TasksGenerateInt32PairTaskT

Namespace:  Ookii.Jumbo.Jet.Tasks
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public sealed class GenerateInt32PairTask<T> : Configurable, 
	ITask<T, Pair<T, int>>
where T : Object, IComparable<T>

Type Parameters

T
The type of the records.

The GenerateInt32PairTaskT type exposes the following members.

Constructors
  NameDescription
Public methodGenerateInt32PairTaskT
Initializes a new instance of the GenerateInt32PairTaskT class
Top
Properties
  NameDescription
Public propertyDfsConfiguration
Gets or sets the configuration used to access the Distributed File System.
(Inherited from Configurable.)
Public propertyJetConfiguration
Gets or sets the configuration used to access the Jet servers.
(Inherited from Configurable.)
Public propertyTaskContext
Gets or sets the configuration for the task attempt.
(Inherited from Configurable.)
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodNotifyConfigurationChanged
Indicates the configuration has been changed. ApplyConfiguration(Object, DfsConfiguration, JetConfiguration, TaskContext) calls this method after setting the configuration.
(Overrides ConfigurableNotifyConfigurationChanged.)
Public methodRun
Runs the task.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

The value assigned to each key/value pair is 1 by default, but can be overridden by specifying a setting with the GeneratePairTaskDefaultValueKey in the StageSettings.

See Also