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

declare(strict_types=1);

namespace OpenTelemetry\SDK\Metrics;

interface MetricReaderInterface
{
    public function collect(): bool;

    public function shutdown(): bool;

    public function forceFlush(): bool;
}