summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Common/Export/TransportFactoryInterface.php
blob: 48e538443fa24db23cb0bc3658b27f72f93e60c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;
}