Package com.mparticle
Class Session
- java.lang.Object
-
- com.mparticle.Session
-
public class Session extends java.lang.ObjectPublic Session API exposing characteristics of a given session.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)longgetSessionID()Query for the hashed session ID.java.lang.LonggetSessionStartTime()java.lang.StringgetSessionUUID()Query for the session UUID.
-
-
-
Method Detail
-
getSessionUUID
@Nullable public java.lang.String getSessionUUID()
Query for the session UUID.- Returns:
- returns a UUID v4 capitalized string representing the unique session ID.
-
getSessionStartTime
@Nullable public java.lang.Long getSessionStartTime()
-
getSessionID
public long getSessionID()
Query for the hashed session ID.- Returns:
- returns the fnv1a 64-bit hash of the session ID utf-16le bytes.
-
equals
public boolean equals(@Nullable java.lang.Object obj)- Overrides:
equalsin classjava.lang.Object
-
-