Program Listing for File batch_span_processor_factory.h

Return to documentation for file (/home/docs/checkouts/readthedocs.org/user_builds/opentelemetry-cpp/checkouts/latest/sdk/include/opentelemetry/sdk/trace/batch_span_processor_factory.h)

// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

#pragma once

#include <memory>

#include "opentelemetry/version.h"

OPENTELEMETRY_BEGIN_NAMESPACE
namespace sdk
{
namespace trace
{
class SpanExporter;
class SpanProcessor;
struct BatchSpanProcessorOptions;

class OPENTELEMETRY_EXPORT BatchSpanProcessorFactory
{
public:
  static std::unique_ptr<SpanProcessor> Create(std::unique_ptr<SpanExporter> &&exporter,
                                               const BatchSpanProcessorOptions &options);
};

}  // namespace trace
}  // namespace sdk
OPENTELEMETRY_END_NAMESPACE