withSleepCount method

RudderConfigBuilder withSleepCount(
  1. int sleepCount
)

@param sleepCount No of seconds to wait before sending any batch @return RudderConfigBuilder

Implementation

RudderConfigBuilder withSleepCount(int sleepCount) {
  __sleepTimeout = sleepCount;
  return this;
}