Skip to content

Deprecate setMinimumSessionInterval #2305

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Firebase/Core/Public/FIRAnalyticsConfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,13 @@ NS_SWIFT_NAME(AnalyticsConfiguration)
+ (FIRAnalyticsConfiguration *)sharedInstance NS_SWIFT_NAME(shared());

/**
* Deprecated.
* Sets the minimum engagement time in seconds required to start a new session. The default value
* is 10 seconds.
*/
- (void)setMinimumSessionInterval:(NSTimeInterval)minimumSessionInterval;
- (void)setMinimumSessionInterval:(NSTimeInterval)minimumSessionInterval
DEPRECATED_MSG_ATTRIBUTE(
"Sessions are started immediately. More information at https://bit.ly/2FU46av");

/**
* Sets the interval of inactivity in seconds that terminates the current session. The default
Expand Down