setEventQueueSizeToSend method

CountlyConfig setEventQueueSizeToSend(
  1. int threshold
)

Set the threshold for event grouping. Event count that is bellow the threshold will be sent on update ticks.

Implementation

CountlyConfig setEventQueueSizeToSend(int threshold) {
  _eventQueueSizeThreshold = threshold;
  return this;
}