This type defines the Microservice main entry point for the Stats feature. More...
Public Member Functions | |
Promise< string > | GetProtectedPlayerStat (long userId, string key) |
Retrieve a stat value, by key More... | |
Promise< Dictionary< string, string > > | GetProtectedPlayerStats (long userId, string[] stats) |
Retrieve one or more stat values, each by key More... | |
Promise< Dictionary< string, string > > | GetAllProtectedPlayerStats (long userId) |
Retrieve all stat values, each by key More... | |
Promise< EmptyResponse > | SetProtectedPlayerStat (long userId, string key, string value) |
Set a stat value, by key More... | |
Promise< EmptyResponse > | SetProtectedPlayerStats (long userId, Dictionary< string, string > stats) |
Set one or more stat values, by key More... | |
Promise< EmptyResponse > | SetStats (string domain, string access, string type, long userId, Dictionary< string, string > stats) |
Promise< Dictionary< string, string > > | GetStats (string domain, string access, string type, long userId, string[] stats) |
Promise< StatsSearchResponse > | SearchStats (string domain, string access, string type, List< Criteria > criteria) |
Queries the player base for matches against specific stats defined by the given criteria . More... | |
![]() | |
UserDataCache< Dictionary< string, string > > | GetCache (string prefix) |
Get the UserDataCache<T> for the stat prefix More... | |
Promise< EmptyResponse > | SetStats (string access, Dictionary< string, string > stats) |
Set the current player's client player stats. More... | |
Promise< Dictionary< string, string > > | GetStats (string domain, string access, string type, long id) |
Get all of the stats for a given player id More... | |
This type defines the Microservice main entry point for the Stats feature.
Promise< Dictionary< string, string > > Beamable.Server.Api.Stats.IMicroserviceStatsApi.GetAllProtectedPlayerStats | ( | long | userId | ) |
Retrieve all stat values, each by key
userId |
Promise< string > Beamable.Server.Api.Stats.IMicroserviceStatsApi.GetProtectedPlayerStat | ( | long | userId, |
string | key | ||
) |
Retrieve a stat value, by key
userId | |
key |
Promise< Dictionary< string, string > > Beamable.Server.Api.Stats.IMicroserviceStatsApi.GetProtectedPlayerStats | ( | long | userId, |
string[] | stats | ||
) |
Retrieve one or more stat values, each by key
userId | |
stats |
Promise< StatsSearchResponse > Beamable.Server.Api.Stats.IMicroserviceStatsApi.SearchStats | ( | string | domain, |
string | access, | ||
string | type, | ||
List< Criteria > | criteria | ||
) |
Queries the player base for matches against specific stats defined by the given criteria .
domain | "game" or "player". |
access | "public" or "private" |
type | Should always be "player" (exists for legacy reasons). |
criteria | List of all Criteria that must match. |
Promise< EmptyResponse > Beamable.Server.Api.Stats.IMicroserviceStatsApi.SetProtectedPlayerStat | ( | long | userId, |
string | key, | ||
string | value | ||
) |
Set a stat value, by key
userId | |
key | |
value |
Promise< EmptyResponse > Beamable.Server.Api.Stats.IMicroserviceStatsApi.SetProtectedPlayerStats | ( | long | userId, |
Dictionary< string, string > | stats | ||
) |
Set one or more stat values, by key
userId | |
stats |