public interface GameListService
Modifier and Type | Interface and Description |
---|---|
static class |
GameListService.Game
This class represents a game, defined by Key-Value Pairs storing the game settings.
|
static class |
GameListService.KeyValuePair
This class represents a key-value pair.
|
static class |
GameListService.SimpleGameList
This class represents a list of games, including the total game count.
|
Modifier and Type | Method and Description |
---|---|
void |
DeleteGame(String GameID)
Deletes a game from the list with the given gameID.
|
void |
FakeCounter(String CounterName)
I honestly have no clue what this does.
|
String |
InsertGame(GameListService.Game UpdatedGame)
Inserts a new game in the list.
|
GameListService.SimpleGameList |
RetrieveGames(int Offset,
int Amount,
String SortColumn,
boolean Descending,
GameListService.KeyValuePair[] filterSettings,
String[] PreferPlayers,
String[] ExcludePlayers)
Retrieves a list of games currently hosted on ESO.
|
void |
UpdateGame(GameListService.Game UpdatedGame)
Replaces a game (with the same gameID) published earlier with this updatedGame.
|
GameListService.SimpleGameList RetrieveGames(int Offset, int Amount, String SortColumn, boolean Descending, GameListService.KeyValuePair[] filterSettings, String[] PreferPlayers, String[] ExcludePlayers)
Offset
- Amount
- SortColumn
- Descending
- filterSettings
- PreferPlayers
- ExcludePlayers
- String InsertGame(GameListService.Game UpdatedGame)
void UpdateGame(GameListService.Game UpdatedGame)
void DeleteGame(String GameID)
void FakeCounter(String CounterName)