From cdd7ad020e165fe680703b6d3319b908b682fb7a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 20 Oct 2023 17:12:29 +0300 Subject: jaeger-client -> opentelemetry --- .../sdk/Trace/SpanExporterInterface.php | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 vendor/open-telemetry/sdk/Trace/SpanExporterInterface.php (limited to 'vendor/open-telemetry/sdk/Trace/SpanExporterInterface.php') diff --git a/vendor/open-telemetry/sdk/Trace/SpanExporterInterface.php b/vendor/open-telemetry/sdk/Trace/SpanExporterInterface.php new file mode 100644 index 000000000..fca336896 --- /dev/null +++ b/vendor/open-telemetry/sdk/Trace/SpanExporterInterface.php @@ -0,0 +1,29 @@ + $batch Batch of spans to export + * + * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.7.0/specification/trace/sdk.md#exportbatch + * + * @psalm-return FutureInterface + */ + public function export(iterable $batch, ?CancellationInterface $cancellation = null): FutureInterface; + + /** @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.7.0/specification/trace/sdk.md#shutdown-2 */ + public function shutdown(?CancellationInterface $cancellation = null): bool; + + /** @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.7.0/specification/trace/sdk.md#forceflush-2 */ + public function forceFlush(?CancellationInterface $cancellation = null): bool; +} -- cgit v1.2.3