| JetActivatorApplyConfiguration Method |
Applies the specified configuration to the specified cobject.
Namespace:
Ookii.Jumbo.Jet
Assembly:
Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax public static void ApplyConfiguration(
Object target,
DfsConfiguration dfsConfiguration,
JetConfiguration jetConfiguration,
TaskContext taskAttemptConfiguration
)
Public Shared Sub ApplyConfiguration (
target As Object,
dfsConfiguration As DfsConfiguration,
jetConfiguration As JetConfiguration,
taskAttemptConfiguration As TaskContext
)
public:
static void ApplyConfiguration(
Object^ target,
DfsConfiguration^ dfsConfiguration,
JetConfiguration^ jetConfiguration,
TaskContext^ taskAttemptConfiguration
)
static member ApplyConfiguration :
target : Object *
dfsConfiguration : DfsConfiguration *
jetConfiguration : JetConfiguration *
taskAttemptConfiguration : TaskContext -> unit
Parameters
- target
- Type: SystemObject
The object to configure. - dfsConfiguration
- Type: Ookii.Jumbo.DfsDfsConfiguration
The configuration used to access the distributed file system. - jetConfiguration
- Type: Ookii.Jumbo.JetJetConfiguration
The configuration used to access Jet. - taskAttemptConfiguration
- Type: Ookii.Jumbo.JetTaskContext
The configuration for the task attempt.
Remarks
This function checks if the object implements IConfigurable and if so, applies the configuration to it.
See Also