withFlushQueueSize method
@param flushQueueSize No. of events you want to send in a batch (min = 1, max = 100) @return RudderConfigBuilder
Implementation
RudderConfigBuilder withFlushQueueSize(int flushQueueSize) {
if (flushQueueSize < 1 || flushQueueSize > 100) {
RudderLogger.logError(
"flushQueueSize is out of range. Min: 1, Max: 100. Set to default");
return this;
}
__flushQueueSize = flushQueueSize;
return this;
}