Implement Actor Model pattern #3232Actor model#3251
Closed
ssrijan-007-sys wants to merge 4 commits intoiluwatar:masterfrom
Closed
Implement Actor Model pattern #3232Actor model#3251ssrijan-007-sys wants to merge 4 commits intoiluwatar:masterfrom
ssrijan-007-sys wants to merge 4 commits intoiluwatar:masterfrom
Conversation
PR SummaryThis PR implements the Actor Model pattern in Java. It includes core classes ( Changes
autogenerated by presubmit.ai |
There was a problem hiding this comment.
✅ LGTM!
Review Summary
Commits Considered (2)
Files Processed (10)
- actor-model/README.md (1 hunk)
- actor-model/etc/actor-model.urm.puml (1 hunk)
- actor-model/etc/actor_model-Actor_Model___UML_Class_Diagram.png (0 hunks)
- actor-model/pom.xml (1 hunk)
- actor-model/src/main/java/com/iluwatar/actormodel/Actor.java (1 hunk)
- actor-model/src/main/java/com/iluwatar/actormodel/ActorSystem.java (1 hunk)
- actor-model/src/main/java/com/iluwatar/actormodel/App.java (1 hunk)
- actor-model/src/main/java/com/iluwatar/actormodel/ExampleActor.java (1 hunk)
- actor-model/src/main/java/com/iluwatar/actormodel/Message.java (1 hunk)
- pom.xml (2 hunks)
Actionable Comments (0)
Skipped Comments (0)
|
There was a problem hiding this comment.
✅ LGTM!
Review Summary
Commits Considered (1)
Files Processed (7)
- actor-model/src/main/java/com/iluwatar/actormodel/Actor.java (1 hunk)
- actor-model/src/main/java/com/iluwatar/actormodel/ActorSystem.java (1 hunk)
- actor-model/src/main/java/com/iluwatar/actormodel/App.java (1 hunk)
- actor-model/src/main/java/com/iluwatar/actormodel/ExampleActor.java (1 hunk)
- actor-model/src/main/java/com/iluwatar/actormodel/ExampleActor2.java (1 hunk)
- actor-model/src/main/java/com/iluwatar/actormodel/Message.java (1 hunk)
- pom.xml (2 hunks)
Actionable Comments (0)
Skipped Comments (0)
There was a problem hiding this comment.
✅ LGTM!
Review Summary
Commits Considered (1)
- dd1dcdd: Merge branch 'iluwatar:master' into actor-model
Files Processed (0)
Actionable Comments (0)
Skipped Comments (0)
ssrijan-007-sys
added a commit
to ssrijan-007-sys/java-design-patterns
that referenced
this pull request
Apr 15, 2025
9 tasks
ssrijan-007-sys
added a commit
to ssrijan-007-sys/java-design-patterns
that referenced
this pull request
Apr 15, 2025
ssrijan-007-sys
added a commit
to ssrijan-007-sys/java-design-patterns
that referenced
this pull request
Apr 16, 2025
iluwatar
pushed a commit
that referenced
this pull request
Apr 22, 2025
* feat: Implement Actor Model pattern #3232 * feat: Implement Actor Model pattern #3232 * feat: update Actor Model implementation with multi-actor logic #3251 * feat: update Actor Model implementation with multi-actor logic and loose coupling #3251 * test: add unit test for actor model #3251 * test: add test for App.java to increase coverage * docs: add complete README for Actor Model pattern also implemented changes #3251
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 adds an implementation of the Actor Model pattern in Java as part of the ongoing effort to expand the collection of design patterns in this repository.
What's Included:
src/: Core Java classes implementing the Actor Model (Actor,Message,ActorSystem,PrinterActor, andApp)README.md: Description of the pattern, explanation, example usage, and when to applyetc/: UML class diagram in both.pngand.urm.pumlformatpom.xml: Maven module configurationpom.xmlCloses #3232
Checklist ✅
./mvnw spotless:apply)src/README.mdetc/with diagramspom.xmlpom.xmlREADME.mdare relative./mvnw clean installLet me know if there are any required changes or improvements. I'm happy to collaborate and iterate!