I am searching for a solution that allows me to make an Angular component listening to a backend object which get updated by some other service.
Actually, I have a component called SignatureStatusComponent
which shows the actual status of customer signature.
This signatureStatus
within Project
object is only updated in the backend via a REST exposed endpoint to a third-party service which allows users to perform their digital signatures.
My problem is how to update in real-time the UI with the actual status once the third-party service perform the callback to change the status.
Here is a simple schema to explain more the architecture :
For your information, I'm using SpringBoot
for backend and Angular
for frontend.