Answer the question
In order to leave comments, you need to log in
How to correctly organize communication between services of a mixed type and notify the user about the completion of the process?
I am involved in the creation of a system consisting of several clients and services. Plugins for desktop applications and WebUI act as clients through which the user interacts with the system . I will not indicate the entire list of services, I will list only those that are important to indicate the situation:
Answer the question
In order to leave comments, you need to log in
REST is synchronous, message queue is asynchronous. If you switch to async, for HTTP you will have to implement WebSocket, or long-poll, or crutch poll once a second, for example. (Fu!)
Tasks to identify, so that several who request one, get the only one.
Check out the Pub-Sub pattern. For example, the one who sent the task "I want data X in Y format" subscribed to the messages of the "Gotovchenko" channel and waited for his "XY" in it.
It is convenient for me to schedule messages and events in an asynchronous system in the online editor of UML diagrams. Participants of the processes are at the top. Down goes "time". And interactions, who sent what to whom.
Only 3 components:
1. Event generators - from different systems.
2. Event listeners - those who are interested in the status of systems.
3. The event queue manager for a specific user (one of the event listeners is the same).
Delivery from the manager to the browser is another matter altogether!
There are a lot of options: manually, js-timeout (or other client event), long-polling and websocket.
About UML - Sergei Sokolov has already said everything correctly.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question