Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
reyang committed May 22, 2024
1 parent 458faaf commit 67324bd
Showing 1 changed file with 23 additions and 19 deletions.
42 changes: 23 additions & 19 deletions src/OpenTelemetry/SimpleExportProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace OpenTelemetry;
public abstract class SimpleExportProcessor<T> : BaseExportProcessor<T>
where T : class
{
private readonly object syncObject = new();
private readonly object syncObject;
private readonly ConcurrencyModes supportedConcurrencyModes;

/// <summary>
Expand All @@ -29,35 +29,39 @@ protected SimpleExportProcessor(BaseExporter<T> exporter)
var attr = (ConcurrencyModesAttribute)attributes[attributes.Length - 1];
this.supportedConcurrencyModes = attr.Supported;
}

if (!this.supportedConcurrencyModes.HasFlag(ConcurrencyModes.Multithreaded))
{
this.syncObject = new object();
}
}

/// <inheritdoc />
protected override void OnExport(T data)
{
if (this.supportedConcurrencyModes.HasFlag(ConcurrencyModes.Multithreaded))
if (this.syncObject is null)
{
try
{
this.exporter.Export(new Batch<T>(data));
}
catch (Exception ex)
this.OnExportInternal(data);
}
else
{
lock (this.syncObject)
{
OpenTelemetrySdkEventSource.Log.SpanProcessorException(nameof(this.OnExport), ex);
this.OnExportInternal(data);
}

return;
}
}

lock (this.syncObject)
[MethodImpl(MethodImplOptions.AggressiveInlining)]

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net6.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net6.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net6.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net7.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net7.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net7.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net6.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net6.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net6.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net8.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net8.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net8.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net7.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net7.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net7.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net7.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net7.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net7.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net6.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net6.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net6.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net7.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net7.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net7.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net7.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net8.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net8.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net8.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net6.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net6.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net6.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net6.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net462)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net462)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net462)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net462)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net462)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net462)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net462)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net462)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net462)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net462)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net8.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net8.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net8.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (ubuntu-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net462)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net462)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net462)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net462)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net462)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net462)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net462)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net462)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net462)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-stable / build-test (windows-latest, net462)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net8.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net8.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImpl' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net8.0)

The name 'MethodImplOptions' does not exist in the current context

Check failure on line 55 in src/OpenTelemetry/SimpleExportProcessor.cs

View workflow job for this annotation

GitHub Actions / build-test-solution-experimental / build-test (windows-latest, net8.0)

The type or namespace name 'MethodImplAttribute' could not be found (are you missing a using directive or an assembly reference?)
private void OnExportInternal(T data)
{
try
{
try
{
this.exporter.Export(new Batch<T>(data));
}
catch (Exception ex)
{
OpenTelemetrySdkEventSource.Log.SpanProcessorException(nameof(this.OnExport), ex);
}
this.exporter.Export(new Batch<T>(data));
}
catch (Exception ex)
{
OpenTelemetrySdkEventSource.Log.SpanProcessorException(nameof(this.OnExport), ex);
}
}
}

0 comments on commit 67324bd

Please sign in to comment.