Method | Description | |
---|---|---|
Event ( string category, string action, System.DateTime from, System.DateTime to, TimeInterval timeInterval = TimeInterval.FifteenMinutes ) : System |
Initializes a new instance of the Event struct.
|
|
RedisKeys ( ) : RedisKey[] |
All of the keys that would be involved in the period of time specified for this event.
|
|
RedisKeysAsync ( ) : Task |
All of the keys that would be involved in the period of time specified for this event.
|
|
ToBase64 ( ) : string |
Logic to convert this Event instance into a Base64 string.
|
public Event ( string category, string action, System.DateTime from, System.DateTime to, TimeInterval timeInterval = TimeInterval.FifteenMinutes ) : System | ||
category | string | /// Typically the object that was interacted with (e.g. button) /// |
action | string | /// The type of interaction (e.g. click) /// |
from | System.DateTime | /// The inclusive start of the period that we're interested in. /// |
to | System.DateTime | /// The exclusive end of the period that we're interested in. /// |
timeInterval | TimeInterval |
/// The accuracy at which we want the data. For example, setting this to TimeInterval.OneDay means there won't
/// be any keys at the fifteen minute or one hour levels, so if the |
return | System |