Packages

trait TrackerSubmission extends ThriftStruct with Product10[SubmissionType, String, Long, Map[String, String], Map[String, String], Map[String, String], Option[String], Option[NativeAppSubmission], AssignedId, Option[AssignedId]] with HasThriftStructCodec3[TrackerSubmission] with Serializable

Prefer the companion object's ophan.thrift.tracker.TrackerSubmission.apply for construction if you don't need to specify passthrough fields.

Linear Supertypes
Serializable, HasThriftStructCodec3[TrackerSubmission], Product10[SubmissionType, String, Long, Map[String, String], Map[String, String], Map[String, String], Option[String], Option[NativeAppSubmission], AssignedId, Option[AssignedId]], Product, Equals, ThriftStruct, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TrackerSubmission
  2. Serializable
  3. HasThriftStructCodec3
  4. Product10
  5. Product
  6. Equals
  7. ThriftStruct
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def browserId: AssignedId

    The unqiue id associated with this browser.

    The unqiue id associated with this browser. Currently this is maintained by setting a cookie for web events, or otherwise determined for native apps.

  2. abstract def dt: Long

    The date time (in millis since epoch UTC) at which this submission was received by the tracker.

  3. abstract def headers: Map[String, String]

    Values of all headers, except COOKIE

  4. abstract def nativeAppSubmission: Option[NativeAppSubmission]

    Detail of a native app submission.

  5. abstract def postData: Option[String]

    If the request to the tracker was a post, the string body associated with the post.

    If the request to the tracker was a post, the string body associated with the post. This is typically used only in the case of mobile event submission.

  6. abstract def queryParams: Map[String, String]

    Raw values of all query parameters supplied, uri-decoded.

    Raw values of all query parameters supplied, uri-decoded. Where paramaters with multiple values, only the first value is supplied.

  7. abstract def significantCookies: Map[String, String]

    Values of a small, whitelisted, set of cookies.

  8. abstract def submissionType: SubmissionType

    The type of this submission

  9. abstract def uniqueSubmissionId: String

    Unique id associated with this submission.

    Unique id associated with this submission. Ophan never makes better than at-least-once delivery promises, so you must ensure that processing two events with the same uniqueRawTrackerSubmissionId has no effect

    Note that for web submissions, this id is likely passed though as the unqiue event id for the events, but as native mobile submissions may represent multiple events, each event contained within this submission must have a diffrentiated id.

  10. abstract def visitId: Option[AssignedId]

    The unique id associated with this "visit".

    The unique id associated with this "visit". For web reports, the visit id is a refreshed session cookie that expires after 30 minutes of activity. Mobile apps do not currently set this value.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def _1: SubmissionType
    Definition Classes
    TrackerSubmission → Product10
  5. def _10: Option[AssignedId]
    Definition Classes
    TrackerSubmission → Product10
  6. def _2: String
    Definition Classes
    TrackerSubmission → Product10
  7. def _3: Long
    Definition Classes
    TrackerSubmission → Product10
  8. def _4: Map[String, String]
    Definition Classes
    TrackerSubmission → Product10
  9. def _5: Map[String, String]
    Definition Classes
    TrackerSubmission → Product10
  10. def _6: Map[String, String]
    Definition Classes
    TrackerSubmission → Product10
  11. def _7: Option[String]
    Definition Classes
    TrackerSubmission → Product10
  12. def _8: Option[NativeAppSubmission]
    Definition Classes
    TrackerSubmission → Product10
  13. def _9: AssignedId
    Definition Classes
    TrackerSubmission → Product10
  14. def _codec: ThriftStructCodec3[TrackerSubmission]
    Definition Classes
    TrackerSubmission → HasThriftStructCodec3
  15. def _passthroughFields: Map[Short, TFieldBlob]
  16. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  17. def canEqual(other: Any): Boolean
    Definition Classes
    TrackerSubmission → Equals
  18. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  19. def copy(submissionType: SubmissionType = this.submissionType, uniqueSubmissionId: String = this.uniqueSubmissionId, dt: Long = this.dt, queryParams: Map[String, String] = this.queryParams, headers: Map[String, String] = this.headers, significantCookies: Map[String, String] = this.significantCookies, postData: Option[String] = this.postData, nativeAppSubmission: Option[NativeAppSubmission] = this.nativeAppSubmission, browserId: AssignedId = this.browserId, visitId: Option[AssignedId] = this.visitId, _passthroughFields: Map[Short, TFieldBlob] = this._passthroughFields): TrackerSubmission
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def equals(other: Any): Boolean
    Definition Classes
    TrackerSubmission → Equals → AnyRef → Any
  22. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def getFieldBlob(_fieldId: Short): Option[TFieldBlob]

    Gets a field value encoded as a binary blob using TCompactProtocol.

    Gets a field value encoded as a binary blob using TCompactProtocol. If the specified field is present in the passthrough map, that value is returned. Otherwise, if the specified field is known and not optional and set to None, then the field is serialized and returned.

  25. def getFieldBlobs(ids: TraversableOnce[Short]): Map[Short, TFieldBlob]

    Collects TCompactProtocol-encoded field values according to getFieldBlob into a map.

  26. def hashCode(): Int
    Definition Classes
    TrackerSubmission → AnyRef → Any
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. def productArity: Int
    Definition Classes
    TrackerSubmission → Product10 → Product
  32. def productElement(n: Int): Any
    Definition Classes
    TrackerSubmission → Product10 → Product
  33. def productIterator: Iterator[Any]
    Definition Classes
    Product
  34. def productPrefix: String
    Definition Classes
    TrackerSubmission → Product
  35. def setField(_blob: TFieldBlob): TrackerSubmission

    Sets a field using a TCompactProtocol-encoded binary blob.

    Sets a field using a TCompactProtocol-encoded binary blob. If the field is a known field, the blob is decoded and the field is set to the decoded value. If the field is unknown and passthrough fields are enabled, then the blob will be stored in _passthroughFields.

  36. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  37. def toString(): String
    Definition Classes
    TrackerSubmission → AnyRef → Any
  38. def toTuple: (SubmissionType, String, Long, Map[String, String], Map[String, String], Map[String, String], Option[String], Option[NativeAppSubmission], AssignedId, Option[AssignedId])
  39. def unsetBrowserId: TrackerSubmission
  40. def unsetDt: TrackerSubmission
  41. def unsetField(_fieldId: Short): TrackerSubmission

    If the specified field is optional, it is set to None.

    If the specified field is optional, it is set to None. Otherwise, if the field is known, it is reverted to its default value; if the field is unknown, it is removed from the passthroughFields map, if present.

  42. def unsetHeaders: TrackerSubmission
  43. def unsetNativeAppSubmission: TrackerSubmission
  44. def unsetPostData: TrackerSubmission
  45. def unsetQueryParams: TrackerSubmission
  46. def unsetSignificantCookies: TrackerSubmission
  47. def unsetSubmissionType: TrackerSubmission

    If the specified field is optional, it is set to None.

    If the specified field is optional, it is set to None. Otherwise, if the field is known, it is reverted to its default value; if the field is unknown, it is removed from the passthroughFields map, if present.

  48. def unsetUniqueSubmissionId: TrackerSubmission
  49. def unsetVisitId: TrackerSubmission
  50. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  53. def write(_oprot: TProtocol): Unit
    Definition Classes
    TrackerSubmission → ThriftStruct

Inherited from Serializable

Inherited from HasThriftStructCodec3[TrackerSubmission]

Inherited from Product10[SubmissionType, String, Long, Map[String, String], Map[String, String], Map[String, String], Option[String], Option[NativeAppSubmission], AssignedId, Option[AssignedId]]

Inherited from Product

Inherited from Equals

Inherited from ThriftStruct

Inherited from AnyRef

Inherited from Any

Ungrouped