EventDestination class
Where an event should be routed. Mirrors Swift EventDestination /
Kotlin EventDestination / Dart EventDestination.
Sources pre-IDL:
Swift SDKEvent.swift:15-22 — publicOnly / analyticsOnly / all
Kotlin SDKEvent.kt:24-33 — PUBLIC_ONLY / ANALYTICS_ONLY / ALL
Dart sdk_event.dart:20-29 — all / publicOnly / analyticsOnly
Bitmask routing destination. Values are powers of two so they can be OR'd together; proto3 enums are open ints, so combinations round-trip on the wire without named constants. The C++ destination router reads this as a bitmask. PUBLIC — app-facing canonical SDKEvent proto stream TELEMETRY — telemetry_manager / server analytics LOG — structured local log sink (opt-in) ALL — PUBLIC | TELEMETRY (legacy "all" parity; the publish() default)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- name → String
-
This enum's name, as specified in the .proto file.
finalinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → int
-
This enum's integer value, as specified in the .proto file.
finalinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
Returns this enum's
nameor thevalueif names are not represented.inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
valueOf(
int value) → EventDestination?
Constants
- EVENT_DESTINATION_ALL → const EventDestination
- EVENT_DESTINATION_LOG → const EventDestination
- EVENT_DESTINATION_PUBLIC → const EventDestination
- EVENT_DESTINATION_TELEMETRY → const EventDestination
- EVENT_DESTINATION_UNSPECIFIED → const EventDestination
-
values
→ const List<
EventDestination>