Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active April 13, 2018 13:12
Show Gist options
  • Save deque-blog/53ce9868c859c3245696bfb6145593ae to your computer and use it in GitHub Desktop.
Save deque-blog/53ce9868c859c3245696bfb6145593ae to your computer and use it in GitHub Desktop.
public interface IAccessProfileInfo {
Future<Map<ProfileId, Iterable<ProfileId>>> friendsOf(Iterable<ProfileId> profileIds);
Future<Map<ProfileId, Set<Topic>>> favoriteTopicsOf(Iterable<ProfileId> profileIds);
Future<Map<ProfileId, Iterable<PostSummary>>> lastPostsOf(Iterable<ProfileId> profileIds);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment