Guest User

Untitled

a guest
May 24th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. ...
  2. .join(likesByKey,
  3. (denormalisedPost: DenormalisedPost, likes: Set[Like]) =>
  4. denormalisedPost.copy(interactions = denormalisedPost.interactions.copy(likes = likes)))
  5. .join(commentCountByKey,
  6. (denormalisedPost: DenormalisedPost, commentCount: Int) =>
  7. denormalisedPost.copy(interactions = denormalisedPost.interactions.copy(comments = commentCount)))
Add Comment
Please, Sign In to add comment