Skip to content
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

Tweaked readme #161

Merged
merged 2 commits into from
May 28, 2024
Merged

Tweaked readme #161

merged 2 commits into from
May 28, 2024

Conversation

bbakerman
Copy link
Member

No description provided.

@@ -194,7 +196,8 @@ private void batchPublisher() {
BatchPublisher<Long, User> batchPublisher = new BatchPublisher<Long, User>() {
@Override
public void load(List<Long> userIds, Subscriber<User> userSubscriber) {
userManager.publishUsersById(userIds, userSubscriber);
Publisher<User> userResults = userManager.publishUsersById(userIds);
userResults.subscribe(userSubscriber);
}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wanted to show how you might create a Publisher and then subscribe to it. This is more clear in an instructional sense

@bbakerman bbakerman merged commit 8df8b2f into master May 28, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant