 | JetActivatorApplyConfiguration Method |
Applies the specified configuration to the specified cobject.
Namespace: Ookii.Jumbo.JetAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic 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 Object
- The object to configure.
- dfsConfiguration DfsConfiguration
- The configuration used to access the distributed file system.
- jetConfiguration JetConfiguration
- The configuration used to access Jet.
- taskAttemptConfiguration TaskContext
- 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