Skip to content

Commit

Permalink
Merge branch 'next' into PLAT-7204/add-thread-state
Browse files Browse the repository at this point in the history
  • Loading branch information
lemnik authored Sep 14, 2021
2 parents 7f588ed + d64c755 commit f3a504b
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,23 @@ public static void setAutoDetectAnrs(boolean autoDetectAnrs) {
getClient().setAutoDetectAnrs(autoDetectAnrs);
}

public static void startSession() {
getClient().startSession();
}

public static void pauseSession() {
getClient().pauseSession();
}

public static boolean resumeSession() {
return getClient().resumeSession();
}

@Nullable
public static Session getCurrentSession() {
return getClient().sessionTracker.getCurrentSession();
}

/**
* Marks the launch period as complete
*/
Expand Down

0 comments on commit f3a504b

Please sign in to comment.