Hive Data Store uses NoSQL Cloud Database to synchronize and store the data for use on the client,
such as the components of the game and the settings information.
More...
Static Public Member Functions | |
static void | set (string key, string value, onSet listener) |
Add Data | |
static void | set (Dictionary< string, string > data, onSet listener) |
Add Data | |
static void | get (string key, onGet listener) |
Get one of my data | |
static void | getMyData (onMyData listener) |
Get all my data | |
static void | getUsersData (string key, onUsersData listener) |
Get all data using key | |
Hive Data Store uses NoSQL Cloud Database to synchronize and store the data for use on the client,
such as the components of the game and the settings information.
Using this service is a good
solution for the games based on the client or if it needs real-time updates between clients.
Hive Data Store has the following features:
|
static |
Get one of my data
|
static |
Get all my data
|
static |
Get all data using key
|
static |
Add Data
You can add data to the Data Store in one pair of a key-value or multiple pairs of map format at once.
After a request, true or false is returned.
|
static |
Add Data
You can add data to the Data Store in one pair of a key-value or multiple pairs of map format at once.
After a request, true or false is returned.