Start Process

Certified Associate Developer

Start process will use different engine and subprocess will use same parent engine? 

What is mean by engine.

Could anyone explain me?

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to JPotharaju

    Start Subprocess: Fire and forget - starts another process in the background without waiting for it to finish.
    Async Process: More control - starts another process asynchronously but allows some monitoring and potential data retrieval after it's done.

    Choosing Between Them:
    If your main process doesn't depend on the subprocess and you don't need return data, use an start process for simplicity.
    If some level of communication or control over the Async subprocess is necessary, consider using Start Process.

Children