in app/eventgenerator/src/main/java/com/googlecodesamples/cloud/jss/eventgenerator/factory/EventPublisherFactory.java [55:65]
protected BatchingSettings getBatchSettings() {
FlowControlSettings flowControlSettings =
FlowControlSettings.newBuilder()
.setMaxOutstandingElementCount(getConfig().getOutstandingMessages())
.setMaxOutstandingRequestBytes(Long.MAX_VALUE)
.build();
return BatchingSettings.newBuilder()
.setFlowControlSettings(flowControlSettings)
.setElementCountThreshold(getConfig().getBatchSize())
.build();
}