Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active March 16, 2018 14:07
Show Gist options
  • Save deque-blog/31922051ef76f21beec9e7d0b3e2a87d to your computer and use it in GitHub Desktop.
Save deque-blog/31922051ef76f21beec9e7d0b3e2a87d to your computer and use it in GitHub Desktop.
public interface ICacheSuggestions {
void saveSuggestions(ProfileId profileId, Iterable<PostSummary> suggestions);
Iterable<PostSummary> loadSuggestions(ProfileId profileId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment