Community
Participate
Working Groups
The UIProcess runJob method can return true if the job is successful, false if not and it can fail with an exception. The finalUpdateUI method is called in any event. It would be highly desirable to distinguish between successful and failed jobs. Either through a property in the UIProcess so that the application code can ask for that state or we add methods like finalUpdateUISuccess finalUpdateUIError. (while keeping finalUpdateUI to not break existing applications) I find it important that throwing an exception means the same as returning false in the runJob method. (which is currently not the case) Any thoughts ?