GSF.ServiceProcess.ServiceHelper.AddProcess C# (CSharp) Method

AddProcess() public method

Adds a new ServiceProcess to the ServiceHelper.
public AddProcess ( object[]>.Action processExecutionMethod, string processName ) : bool
processExecutionMethod object[]>.Action The to be invoked the is started.
processName string Name of the being added.
return bool
        public bool AddProcess(Action<string, object[]> processExecutionMethod, string processName)
        {
            return AddProcess(processExecutionMethod, processName, null);
        }

Same methods

ServiceHelper::AddProcess ( object[]>.Action processExecutionMethod, string processName, object processArguments ) : bool
ServiceHelper