Last active
April 13, 2018 13:12
-
-
Save deque-blog/53ce9868c859c3245696bfb6145593ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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