View Source SauceAnalytics.Store.Entry (sauce_analytics v0.1.2)

This struct represents an entry obtained from the Store.

fields

Fields

  • :sid - The id of the session.
  • :view_sequence - The number of times that track_visit has been called.
  • :event_sequence - The number of times that track_event has been called.
  • :last_modified - The unix timestamp of when the session was last modified.

Link to this section Summary

Link to this section Types

@type t() :: %SauceAnalytics.Store.Entry{
  event_sequence: integer(),
  last_modified: integer(),
  sid: reference(),
  view_sequence: integer()
}