summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/Telemetry.java
blob: 833978d8fda5b680f37cacc38f1e190d5cc5493f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.mapbox.mapboxsdk.maps;

import com.mapbox.android.telemetry.SessionInterval;
import com.mapbox.mapboxsdk.module.telemetry.TelemetryImpl;

/**
 * @deprecated use {@link TelemetryImpl} instead.
 */
@Deprecated
public class Telemetry {

  @Deprecated
  public static void initialize() {
    // no-op
  }

  /**
   * Set the debug logging state of telemetry.
   *
   * @param debugLoggingEnabled true to enable logging
   * @deprecated use {@link TelemetryImpl#updateDebugLoggingEnabled(boolean)} instead
   */
  @Deprecated
  public static void updateDebugLoggingEnabled(boolean debugLoggingEnabled) {
    TelemetryImpl.updateDebugLoggingEnabled(debugLoggingEnabled);
  }

  /**
   * Update the telemetry rotation session id interval
   *
   * @param interval the selected session interval
   * @return true if rotation session id was updated
   * @deprecated use {@link TelemetryImpl#setSessionIdRotationInterval(int)} instead
   */
  @Deprecated
  public static boolean updateSessionIdRotationInterval(SessionInterval interval) {
    return TelemetryImpl.updateSessionIdRotationInterval(interval);
  }

  /**
   * Method to be called when an end-user has selected to participate in telemetry collection.
   *
   * @deprecated use {@link TelemetryImpl#setUserTelemetryRequestState(boolean)}
   * with parameter true instead
   */
  @Deprecated
  public static void enableOnUserRequest() {
    TelemetryImpl.enableOnUserRequest();
  }

  /**
   * Method to be called when an end-user has selected to opt-out of telemetry collection.
   *
   * @deprecated use {@link TelemetryImpl#setUserTelemetryRequestState(boolean)}
   * with parameter false instead
   */
  @Deprecated
  public static void disableOnUserRequest() {
    TelemetryImpl.disableOnUserRequest();
  }
}