Session Handling - GameAnalytics/GA-SDK-JAVASCRIPT GitHub Wiki

Sessions are the concept of a user spending focused time in your game - from game launch to the user leaving the game.

Session start

  1. Generate new session.
  2. Add a session start event (a "user" event).
  3. Start the periodic activation of submitting queued events.
  4. Next event submit will fix potential missing session_end from earlier sessions.

Session end

  1. Stop the periodic activation of submitting queued events.
  2. Add a session_end event.
  3. Submit queued events.

 

NEXT  →