You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pid = SomeProcess()
error_message = pid->on_error()
when error_message:
print("Process exited with error: " + to_string(error_message))
end
# normal exit case
exit_message = pid->on_exit()
when exit_message:
print("Process exited normally with message: " + to_string(exit_message))
end
The text was updated successfully, but these errors were encountered:
Allow monitoring of processes for failure.
The text was updated successfully, but these errors were encountered: