After an async Signify operation is successfully accepted by KERIA, a long running operation is stored and the oid returned to the client.
The client can then use this oid to poll the status of the operation until done=True and process any additional metadata.
I don't think is scalable long term because even a single client may be polling many operations at once with separate HTTP requests. And in general if those clients were other microservices in the same infrastructure (as opposed to e.g. an edge mobile wallet) it would be much nicer to react to events rather than tracking and polling in the background.
Not sure yet on the best approach here. A nice first step might be an interface to dump signed messages (maybe that could be plugged into standard message brokers?). Longer term solution would need KERI authentication to listen for events.
After an async Signify operation is successfully accepted by KERIA, a long running operation is stored and the
oidreturned to the client.The client can then use this
oidto poll the status of the operation untildone=Trueand process any additional metadata.I don't think is scalable long term because even a single client may be polling many operations at once with separate HTTP requests. And in general if those clients were other microservices in the same infrastructure (as opposed to e.g. an edge mobile wallet) it would be much nicer to react to events rather than tracking and polling in the background.
Not sure yet on the best approach here. A nice first step might be an interface to dump signed messages (maybe that could be plugged into standard message brokers?). Longer term solution would need KERI authentication to listen for events.