-
Notifications
You must be signed in to change notification settings - Fork 224
docs: add architecture diagram to README #1549
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR 🎉 I think this is great! Just one comment from me
… runtime CORRECTION (close #<915>)
… runtime (close #<915>)
… runtime (close #<915>)
✅ Updated the diagram based on the review feedback:
flowchart LR
A[End User Application] -->|HTTP or gRPC| B[Dapr Java SDK]
B -->|Dapr API calls| C[Dapr Sidecar]
C -->|Components| D[State Stores, Pub/Sub, Services, etc.]
%% Optional grouping for clarity
subgraph R[Dapr Runtime]
C
D
end
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@RaymundoZa thanks a lot for your contribution!
Could you please sign your commits. This a requirement for this repo. Otherwise we won't be able to merge your changes.
Thank you!
@cicoyle could you please check if you are OK with the changes and approve. Thank you! |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1549 +/- ##
============================================
+ Coverage 76.91% 78.49% +1.58%
- Complexity 1592 1913 +321
============================================
Files 145 215 +70
Lines 4843 5827 +984
Branches 562 649 +87
============================================
+ Hits 3725 4574 +849
- Misses 821 916 +95
- Partials 297 337 +40 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This PR adds an architecture diagram to the README to help new contributors and users understand how a Java application interacts with the Dapr runtime via the Java SDK.
This addresses #915.
