setUpdateSessionTimerDelay method

CountlyConfig setUpdateSessionTimerDelay(
  1. int delay
)

Sets the interval for the automatic session update calls min value 1 (1 second), max value 600 (10 minutes) int delay - delay in seconds

Implementation

CountlyConfig setUpdateSessionTimerDelay(int delay) {
  _sessionUpdateTimerDelay = delay;
  return this;
}