summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Common/Export/TransportInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/open-telemetry/sdk/Common/Export/TransportInterface.php')
-rw-r--r--vendor/open-telemetry/sdk/Common/Export/TransportInterface.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/open-telemetry/sdk/Common/Export/TransportInterface.php b/vendor/open-telemetry/sdk/Common/Export/TransportInterface.php
new file mode 100644
index 000000000..5fb26eff8
--- /dev/null
+++ b/vendor/open-telemetry/sdk/Common/Export/TransportInterface.php
@@ -0,0 +1,22 @@
+<?php
+
+declare(strict_types=1);
+
+namespace OpenTelemetry\SDK\Common\Export;
+
+use OpenTelemetry\SDK\Common\Future\CancellationInterface;
+use OpenTelemetry\SDK\Common\Future\FutureInterface;
+
+/**
+ * @psalm-template-covariant CONTENT_TYPE of string
+ */
+interface TransportInterface
+{
+ public function contentType(): string;
+
+ public function send(string $payload, ?CancellationInterface $cancellation = null): FutureInterface;
+
+ public function shutdown(?CancellationInterface $cancellation = null): bool;
+
+ public function forceFlush(?CancellationInterface $cancellation = null): bool;
+}