summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Common/Export/TransportFactoryInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/open-telemetry/sdk/Common/Export/TransportFactoryInterface.php')
-rw-r--r--vendor/open-telemetry/sdk/Common/Export/TransportFactoryInterface.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/vendor/open-telemetry/sdk/Common/Export/TransportFactoryInterface.php b/vendor/open-telemetry/sdk/Common/Export/TransportFactoryInterface.php
new file mode 100644
index 000000000..48e538443
--- /dev/null
+++ b/vendor/open-telemetry/sdk/Common/Export/TransportFactoryInterface.php
@@ -0,0 +1,32 @@
+<?php
+
+declare(strict_types=1);
+
+namespace OpenTelemetry\SDK\Common\Export;
+
+interface TransportFactoryInterface
+{
+ public const COMPRESSION_GZIP = 'gzip';
+ public const COMPRESSION_DEFLATE = 'deflate';
+ public const COMPRESSION_BROTLI = 'br';
+
+ /**
+ * @psalm-template CONTENT_TYPE of string
+ * @psalm-param CONTENT_TYPE $contentType
+ * @psalm-param array<string, string|string[]> $headers
+ * @psalm-param string|string[]|null $compression
+ * @psalm-return TransportInterface<CONTENT_TYPE>
+ */
+ public function create(
+ string $endpoint,
+ string $contentType,
+ array $headers = [],
+ $compression = null,
+ float $timeout = 10.,
+ int $retryDelay = 100,
+ int $maxRetries = 3,
+ ?string $cacert = null,
+ ?string $cert = null,
+ ?string $key = null
+ ): TransportInterface;
+}