withContinueSessionMillis method

Builder withContinueSessionMillis([
  1. int sessionMillis = 10000
])

Sets the timeout for expiring a Flurry session.

Sets the time the app may be in the background before starting a new session upon resume. Default is set to 10 seconds in background.

Implementation

Builder withContinueSessionMillis([int sessionMillis = 10000]) {
  builderAgent?.withContinueSessionMillis(sessionMillis);
  return this;
}