| Package | Description |
|---|---|
| com.threerings.parlor.rating.server.persist |
| Modifier and Type | Field and Description |
|---|---|
static Class<RatingRecord> |
RatingRecord._R |
| Modifier and Type | Method and Description |
|---|---|
RatingRecord |
RatingRepository.getRating(int gameId,
int playerId)
Loads the rating for the given player for the given game and returns it as a
RatingRecord object, or null if the player has no previous rating for the game. |
| Modifier and Type | Method and Description |
|---|---|
static Key<RatingRecord> |
RatingRecord.getKey(int gameId,
int playerId)
Create and return a primary
Key to identify a RatingRecord
with the supplied key values. |
Collection<RatingRecord> |
RatingRepository.getMostRecentRatings(Collection<Integer> playerIds,
Collection<Integer> gameIds,
int gameIdSign)
Load the most recently entered rating for each of a collection of players.
|
Collection<RatingRecord> |
RatingRepository.getMostRecentRatings(Collection<Integer> playerIds,
int gameIdSign)
Load the most recently entered rating for each of a collection of players.
|
List<RatingRecord> |
RatingRepository.getRatings(int gameId,
Integer... players)
Fetch the ratings registered for any of the given players for the given game and return
them as a list of
RatingRecord objects. |
List<RatingRecord> |
RatingRepository.getRatings(int playerId,
long since,
int count)
Fetch and return all the registered
RatingRecord rows for the given player. |
List<RatingRecord> |
RatingRepository.getTopRatings(int gameId,
int limit,
long since,
Set<Integer> playerIds)
Returns the top-ratings for the specified game.
|
Copyright © 2015. All rights reserved.