summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Metrics/MetricRegistry/MetricCollectorInterface.php
blob: 4e8e91ced69dc7541261df074cadc4c0421e2087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

namespace OpenTelemetry\SDK\Metrics\MetricRegistry;

/**
 * @internal
 */
interface MetricCollectorInterface
{
    public function collectAndPush(iterable $streamIds): void;
}