Skip to main content

Save Game Session

Stores a game session's state on the XGENIA RGS platform, so a player can pick a game back up later.

Session Data takes anything serialisable — where the player is in a feature, how many free spins are left, a partially played hand.

Save under a Session Id you choose and control. Saving again with the same id replaces that session's data.

This is not the same thing as the sessions the platform records for reporting. Those are rolled up automatically from played rounds; see Round tracking.

Inputs

Actions

SignalDescription
DoRuns the node.

General

DataDescription
Player Id (string)The player the session belongs to.
Game Id (string)The game the session belongs to.
Session Id (string)Your identifier for this session. Saving twice with the same id overwrites.
Session Data ()*The state to store. Any serialisable value.

Outputs

Result

DataDescription
Is Successful (boolean)True when the call succeeded.

Events

SignalDescription
DoneSent when the node has finished, on success and on failure alike.