Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
pr_methods:executechildprocess [2023/04/04 05:51] – removed - external edit (Unknown date) 127.0.0.1pr_methods:executechildprocess [2023/05/08 06:52] (current) sean
Line 1: Line 1:
 +{{tag>Index Programmers_Reference Methods IExecutionEngine_Interface executeChildProcess}}
 +====executeChildProcess (IProcess, String, IEntity [], Boolean)==== 
 +<code java>public IProcess executeChildProcess (IProcessparent, String processName, IEntity [] parameters, Boolean asynchronous)
 +throws ServerTimeOutException, AccessDeniedException, ExecutionException;</code>
 +
 +This method starts the specified process as a child of the current process. This method allows custom process components to start other processes.
 +
 +===Parameters===
 +|''processName''|the name of the process to start (the business space version must have the process with this name configured)|
 +|''parameters''|the instances of the business objects representing the process input if it is declared or null if the process has no input|
 +|''asynchronous''|if true the new process is started in a separate thread.|
 +
 +===Returns===
 +The reference to the child process component.