feat: implement annotation-driven event observer framework#82
Open
Twiineenock wants to merge 4 commits intohiero-ledger:mainfrom
Open
feat: implement annotation-driven event observer framework#82Twiineenock wants to merge 4 commits intohiero-ledger:mainfrom
Twiineenock wants to merge 4 commits intohiero-ledger:mainfrom
Conversation
Author
Signed-off-by: Twiineenock <Twiineenock@users.noreply.github.com>
…k stability Signed-off-by: Twiineenock <Twiineenock@users.noreply.github.com>
ba090c7 to
1863733
Compare
Signed-off-by: Twiineenock <Twiineenock@users.noreply.github.com>
72c6574 to
c7e35a5
Compare
Signed-off-by: Twiineenock <Twiineenock@users.noreply.github.com>
c7e35a5 to
4316e6d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description:
This PR implements a declarative, annotation-driven Event Observer Framework to enable reactive monitoring of Hiero network transactions and HCS topic messages.
AbstractPollingObservercore engine for stable, background network monitoring.@HieroTransactionListenerand@HieroTopicListenerannotations for high-level event subscription.HieroListenerProcessorfor automatic bean discovery and lifecycle management in Spring Boot.MirrorNodeClientand Repository layers with timestamp-based filtering support.hiero-enterprise-spring-samplemodule.Related issue(s):
Fixes #81
Notes for reviewer:
The framework uses a polling-based approach against the Mirror Node REST API, which provides better stability for long-running observers in enterprise environments compared to raw gRPC streams.
I've verified the implementation by adding a sample listener in the
spring-sampleapp (seeHieroEventListener.java). Below is a snippet of how a developer would use this new functionality: