BatchSpanProcessor constructor
BatchSpanProcessor(
- SpanExporter _exporter, {
- int? maxExportBatchSize,
- int? scheduledDelayMillis,
Implementation
BatchSpanProcessor(this._exporter,
{int? maxExportBatchSize, int? scheduledDelayMillis}) {
if (maxExportBatchSize != null) {
_maxExportBatchSize = maxExportBatchSize;
}
if (scheduledDelayMillis != null) {
_scheduledDelayMillis = scheduledDelayMillis;
}
}