| JobBuilderJobOnJobCreated Method |
Called when the job has been created on the job server, but before running it.
Namespace:
Ookii.Jumbo.Jet.Jobs.Builder
Assembly:
Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax protected virtual void OnJobCreated(
Job job,
JobConfiguration jobConfiguration
)
Protected Overridable Sub OnJobCreated (
job As Job,
jobConfiguration As JobConfiguration
)
protected:
virtual void OnJobCreated(
Job^ job,
JobConfiguration^ jobConfiguration
)
abstract OnJobCreated :
job : Job *
jobConfiguration : JobConfiguration -> unit
override OnJobCreated :
job : Job *
jobConfiguration : JobConfiguration -> unit
Parameters
- job
- Type: Ookii.Jumbo.JetJob
The Job instance describing the job. - jobConfiguration
- Type: Ookii.Jumbo.Jet.JobsJobConfiguration
The JobConfiguration that will be used when the job is started.
Remarks
Override this method if you want to make changes to the job configuration (e.g. add settings) or upload additional files to the DFS.
See Also