Skip to content

Commit 91d28c7

Browse files
committed
chore: Reorder test parameters in xml doc
1 parent 754cb18 commit 91d28c7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/OpenTelemetry/BatchExportProcessor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ protected BatchExportProcessor(
5151
/// Initializes a new instance of the <see cref="BatchExportProcessor{T}"/> class.
5252
/// </summary>
5353
/// <param name="exporter">Exporter instance.</param>
54-
/// <param name="useThreads">Enables the use of <see cref="Thread" /> when true, <see cref="Task"/> when false.</param>
5554
/// <param name="maxQueueSize">The maximum queue size. After the size is reached data are dropped. The default value is 2048.</param>
5655
/// <param name="scheduledDelayMilliseconds">The delay interval in milliseconds between two consecutive exports. The default value is 5000.</param>
5756
/// <param name="exporterTimeoutMilliseconds">How long the export can run before it is cancelled. The default value is 30000.</param>
5857
/// <param name="maxExportBatchSize">The maximum batch size of every export. It must be smaller or equal to maxQueueSize. The default value is 512.</param>
58+
/// <param name="useThreads">Enables the use of <see cref="Thread" /> when true, <see cref="Task"/> when false.</param>
5959
protected BatchExportProcessor(
6060
BaseExporter<T> exporter,
6161
int maxQueueSize = DefaultMaxQueueSize,

src/OpenTelemetry/Logs/Processor/BatchLogRecordExportProcessor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ public BatchLogRecordExportProcessor(
3939
/// Initializes a new instance of the <see cref="BatchLogRecordExportProcessor"/> class.
4040
/// </summary>
4141
/// <param name="exporter">Log record exporter.</param>
42-
/// <param name="useThreads">Enables the use of <see cref="Thread" /> when true, <see cref="Task"/> when false.</param>
4342
/// <param name="maxQueueSize">The maximum queue size. After the size is reached data are dropped. The default value is 2048.</param>
4443
/// <param name="scheduledDelayMilliseconds">The delay interval in milliseconds between two consecutive exports. The default value is 5000.</param>
4544
/// <param name="exporterTimeoutMilliseconds">How long the export can run before it is cancelled. The default value is 30000.</param>
4645
/// <param name="maxExportBatchSize">The maximum batch size of every export. It must be smaller or equal to maxQueueSize. The default value is 512.</param>
46+
/// <param name="useThreads">Enables the use of <see cref="Thread" /> when true, <see cref="Task"/> when false.</param>
4747
public BatchLogRecordExportProcessor(
4848
BaseExporter<LogRecord> exporter,
4949
int maxQueueSize = DefaultMaxQueueSize,

src/OpenTelemetry/Metrics/Reader/PeriodicExportingMetricReader.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ public PeriodicExportingMetricReader(
4040
/// Initializes a new instance of the <see cref="PeriodicExportingMetricReader"/> class.
4141
/// </summary>
4242
/// <param name="exporter">Exporter instance to export Metrics to.</param>
43-
/// <param name="useThreads">Enables the use of <see cref="Thread" /> when true, <see cref="Task"/> when false.</param>
4443
/// <param name="exportIntervalMilliseconds">The interval in milliseconds between two consecutive exports. The default value is 60000.</param>
4544
/// <param name="exportTimeoutMilliseconds">How long the export can run before it is cancelled. The default value is 30000.</param>
45+
/// <param name="useThreads">Enables the use of <see cref="Thread" /> when true, <see cref="Task"/> when false.</param>
4646
public PeriodicExportingMetricReader(
4747
BaseExporter<Metric> exporter,
4848
int exportIntervalMilliseconds = DefaultExportIntervalMilliseconds,
@@ -105,7 +105,7 @@ protected override void Dispose(bool disposing)
105105

106106
#pragma warning disable CA1859 // Change return type of method 'CreateWorker' from 'PeriodicExportingMetricReaderWorker' to 'PeriodicExportingMetricReaderThreadWorker' for improved performance
107107
private PeriodicExportingMetricReaderWorker CreateWorker()
108-
#pragma warning disable CA1859
108+
#pragma warning restore CA1859
109109
{
110110
#if NET
111111
// Use task-based worker for browser platform where threading may be limited

src/OpenTelemetry/Trace/Processor/BatchActivityExportProcessor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ public BatchActivityExportProcessor(
3939
/// Initializes a new instance of the <see cref="BatchActivityExportProcessor"/> class.
4040
/// </summary>
4141
/// <param name="exporter"><inheritdoc cref="BatchExportProcessor{T}.BatchExportProcessor(BaseExporter{T}, int, int, int, int, bool)" path="/param[@name='exporter']"/></param>
42-
/// <param name="useThreads"><inheritdoc cref="BatchExportProcessor{T}.BatchExportProcessor(BaseExporter{T}, int, int, int, int, bool)" path="/param[@name='useThread']"/></param>
4342
/// <param name="maxQueueSize"><inheritdoc cref="BatchExportProcessor{T}.BatchExportProcessor(BaseExporter{T}, int, int, int, int, bool)" path="/param[@name='maxQueueSize']"/></param>
4443
/// <param name="scheduledDelayMilliseconds"><inheritdoc cref="BatchExportProcessor{T}.BatchExportProcessor(BaseExporter{T}, int, int, int, int, bool)" path="/param[@name='scheduledDelayMilliseconds']"/></param>
4544
/// <param name="exporterTimeoutMilliseconds"><inheritdoc cref="BatchExportProcessor{T}.BatchExportProcessor(BaseExporter{T}, int, int, int, int, bool)" path="/param[@name='exporterTimeoutMilliseconds']"/></param>
4645
/// <param name="maxExportBatchSize"><inheritdoc cref="BatchExportProcessor{T}.BatchExportProcessor(BaseExporter{T}, int, int, int, int, bool)" path="/param[@name='maxExportBatchSize']"/></param>
46+
/// <param name="useThreads"><inheritdoc cref="BatchExportProcessor{T}.BatchExportProcessor(BaseExporter{T}, int, int, int, int, bool)" path="/param[@name='useThreads']"/></param>
4747
public BatchActivityExportProcessor(
4848
BaseExporter<Activity> exporter,
4949
int maxQueueSize = DefaultMaxQueueSize,

0 commit comments

Comments
 (0)