setMaxRequestQueueSize method

CountlyConfig setMaxRequestQueueSize(
  1. int maxSize
)

This flag limits the number of requests that can be stored in the request queue when the Countly server is unavailable or unreachable. If the number of requests in the queue reaches the limit, the oldest requests in the queue will be dropped. int maxSize - Minimum value is "1". int maxSize - Default value is 1,000.

Implementation

CountlyConfig setMaxRequestQueueSize(int maxSize) {
  _maxRequestQueueSize = maxSize;
  return this;
}