-
Notifications
You must be signed in to change notification settings - Fork 3
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
ISSUE-4: Word counter with one generator and one aggregator #24
Conversation
|
||
import java.net.SocketAddress; | ||
|
||
public class WordCountLinkListener implements LinkListener<Message<String>> { |
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.
Missing comment here
I've done a pass here. Let me know when you address the comments. |
Thank you for comments! I'll address them on Monday. |
I addressed all @DifferentSC's comments, except one. I think we can discuss the comment face to face. Thank you! |
Thank you for your code. Let's move on to the next step and register needed issues. |
ISSUE-4: Word counter with one generator and one aggregator
This closes #4.
As a sub-issue of #1, I implement simple Word Counter REEF app with one generator and one aggregator.
The generator and the aggregator communicate using
NCS
.@DifferentSC The base branch of this PR is not the master branch.
But it is my first REEF application and I think this app contains some mistakes although I try to learn and follow the REEF coding style. So I'll appreciate if you review this code when you have time on your hands. Thank you!
(FIY, I already copied
checkstyle.xml
in REEF project to this app and check my code using it.)