Click or drag to resize

IJobBuilderOperation Interface

Provides methods for the JobBuilder to transform an operation into stages in a JobConfiguration.

Namespace:  Ookii.Jumbo.Jet.Jobs.Builder
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public interface IJobBuilderOperation : IOperationInput

The IJobBuilderOperation type exposes the following members.

Properties
  NameDescription
Public propertyJobBuilder
Gets the job builder that this operation belongs to.
Public propertyRecordType
Gets the type of the records provided by this input.
(Inherited from IOperationInput.)
Public propertyStage
Gets the StageConfiguration for this operation after the CreateConfiguration(JobBuilderCompiler) method has been called.
Top
Methods
  NameDescription
Public methodCreateConfiguration
Creates the settings in the job configuration for this operation.
Public methodSetOutput
Sets the output for this operation.
Top
Remarks
Note Note
It's recommended to explicitly implement this interface, as the user of the JobBuilder shouldn't use these methods.
See Also