|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use RatingRecord | |
|---|---|
| com.threerings.parlor.rating.server.persist | |
| Uses of RatingRecord in com.threerings.parlor.rating.server.persist |
|---|
| Fields in com.threerings.parlor.rating.server.persist with type parameters of type RatingRecord | |
|---|---|
static Class<RatingRecord> |
RatingRecord._R
|
| Methods in com.threerings.parlor.rating.server.persist that return RatingRecord | |
|---|---|
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. |
| Methods in com.threerings.parlor.rating.server.persist that return types with arguments of type RatingRecord | |
|---|---|
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. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||