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
It would be nice, if this logic could be provided by the Process component. I expect it to be a common usecase. But I see how integrating this might grow the Process class. It might make sense to think about splitting the definition of a Process from the strategy how a Process should be run. The current Process class already implements two strategies:
run the process synchronously and return the exit code, don't throw
run the process asynchrounously, don't throw
The second thing my ProcessUtil class does is formatting an error string for the Exception:
I've a ProcessUtil class in my project that does two things.
It would be nice, if this logic could be provided by the Process component. I expect it to be a common usecase. But I see how integrating this might grow the Process class. It might make sense to think about splitting the definition of a Process from the strategy how a Process should be run. The current Process class already implements two strategies:
The text was updated successfully, but these errors were encountered: