Skip to content

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
@dondonz dondonz added this to the 3.4.0 milestone Dec 16, 2024
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.

2 participants