Created
April 2, 2018 12:41
-
-
Save deque-blog/b1e2aa2a1bbc002c92b745fa65a28c63 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<Iterable<ProfileId>> friendsOf(ProfileId profileId); | |
Future<Set<Topic>> favoriteTopicsOf(ProfileId profileId); | |
Future<Iterable<PostSummary>> lastPostsOf(ProfileId profileId); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment