forked from ajanata/PretendYoureXyzzy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ | |
* @author Andy Janata ([email protected]) | ||
*/ | ||
public interface Metrics { | ||
void serverStarted(String startupId); | ||
void serverStart(String startupId); | ||
|
||
void newUser(String persistentId, String sessionId, @Nullable CityResponse geoIp, | ||
String agentName, String agentType, String agentOs, String agentLanguage); | ||
|
@@ -51,7 +51,7 @@ void newUser(String persistentId, String sessionId, @Nullable CityResponse geoIp | |
|
||
// The card data is way too complicated to dictate the format it should be in, so let | ||
// implementations deal with the structured data. | ||
void roundJudged(String gameId, String judgeSessionId, String winnerSessionId, | ||
void roundComplete(String gameId, String judgeSessionId, String winnerSessionId, | ||
Map<User, List<WhiteCard>> cards); | ||
|
||
void gameStart(String gameId, Collection<CardSet> decks, int blanks, int maxPlayers, | ||
|
This file contains 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