|
ServiceHelperAddScheduledProcess(ActionString, Object, String, String) Method
|
Namespace: GSF.ServiceProcessAssembly: GSF.ServiceProcess (in GSF.ServiceProcess.dll) Version: 2.4.248-beta
Syntaxpublic bool AddScheduledProcess(
Action<string, Object[]> processExecutionMethod,
string processName,
string processSchedule
)
Public Function AddScheduledProcess (
processExecutionMethod As Action(Of String, Object()),
processName As String,
processSchedule As String
) As Boolean
public:
bool AddScheduledProcess(
Action<String^, array<Object^>^>^ processExecutionMethod,
String^ processName,
String^ processSchedule
)
member AddScheduledProcess :
processExecutionMethod : Action<string, Object[]> *
processName : string *
processSchedule : string -> bool
function AddScheduledProcess(processExecutionMethod, processName, processSchedule);
View SourceParameters
- processExecutionMethod ActionString, Object
- The Delegate to be invoked the ServiceProcess is started.
- processName String
- Name of the ServiceProcess being added.
- processSchedule String
- Schedule for the execution of the ServiceProcess.
Return Value
Booleantrue if the
ServiceProcess does not exist already and is added and scheduled, otherwise false.
See Also