Replies: 1 comment
-
|
this is a good point. converting this into an issue. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
At the moment, the
IssuanceProcessManagerImpldoes not publish any events when anIssuanceProcesschanges state.This feels inconsistent with the behaviour of other state machine managers in the codebase, such as the
TransferProcessManagerImpl, where state transitions trigger events that adopters can subscribe to.One practical use case is observability and auditing. For example, a credential issuer may want to track when a credential was successfully delivered, rejected, or failed during issuance. As far as I know, the only current way to react to those changes is by polling the
IssuanceProcessStore.It could be useful to introduce event publishing for
IssuanceProcesstransitions, following the same pattern already used in the other state machine managers.Beta Was this translation helpful? Give feedback.
All reactions