Provides access to methods that control a Jobs Registry.
Members
Name | Description | |
---|---|---|
![]() |
GetJobDirectory | Returns path to job's directory. |
![]() |
Init | Initializes the jobs registry. |
![]() |
RegisterJob | Registers job. |
![]() |
UnregisterJob | Unregisters job. |
IJobRegistry.GetJobDirectory Method
Returns path to job's directory.
Public Function GetJobDirectory ( _
ByVal JobID As String _
) As String
public string GetJobDirectory (
string JobID
);
IJobRegistry.Init Method
Initializes the jobs registry.
Public Sub Init ( _
ByVal Path As String _
)
public void Init (
string Path
);
IJobRegistry.RegisterJob Method
Registers job.
Public Sub RegisterJob ( _
ByVal JobID As String, _
ByVal jobDir As String _
)
public void RegisterJob (
string JobID,
string jobDir
);
IJobRegistry.UnregisterJob Method
Unregisters job.
Public Sub UnregisterJob ( _
ByVal JobID As String _
)
public void UnregisterJob (
string JobID
);
Classes that implement IJobRegistry
Classes | Description |
---|