// Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 #include #include #include "opentelemetry/sdk/trace/batch_span_processor.h" #include "opentelemetry/sdk/trace/batch_span_processor_factory.h" #include "opentelemetry/sdk/trace/batch_span_processor_options.h" #include "opentelemetry/sdk/trace/batch_span_processor_runtime_options.h" #include "opentelemetry/sdk/trace/exporter.h" #include "opentelemetry/sdk/trace/processor.h" #include "opentelemetry/version.h" OPENTELEMETRY_BEGIN_NAMESPACE namespace sdk { namespace trace { std::unique_ptr BatchSpanProcessorFactory::Create( std::unique_ptr &&exporter, const BatchSpanProcessorOptions &options) { BatchSpanProcessorRuntimeOptions runtime_options; return Create(std::move(exporter), options, runtime_options); } std::unique_ptr BatchSpanProcessorFactory::Create( std::unique_ptr &&exporter, const BatchSpanProcessorOptions &options, const BatchSpanProcessorRuntimeOptions &runtime_options) { std::unique_ptr processor( new BatchSpanProcessor(std::move(exporter), options, runtime_options)); return processor; } } // namespace trace } // namespace sdk OPENTELEMETRY_END_NAMESPACE