I have built a C# Zebee client to execute sample bpmn model , and I want to know how to notify the UI of any changes or progress that have been executed successfully
for example , when any of the following tasks get executed successfully,
[Register User] , [Get User Posts] , [Read SQL Data]
I want the UI to be notified with this action and also need to read the associated data or parameters.
cpbpm
October 14, 2024, 5:31pm
2
you can search for the status of tasks using Rest API.
Returns the list of tasks that satisfy search request params. If an empty body is provided, all tasks are returned. Only one of `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must be present in request.
Based on the results, you can notify the UI to update the value.
Thanks for reply @cpbpm
This approch seems like pulling the data from the process, I will try it.
I’d rather prefere event deiven approch if possible.
I heared about message corelation. I don’t know if it will help this case.
cpbpm
October 14, 2024, 8:47pm
4
if you would like to go route on message correlation, refer the documentation:
system
Closed
January 12, 2025, 8:47pm
5
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.