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

declare(strict_types=1);

namespace OpenTelemetry\SDK\Metrics;

/**
 * @internal
 */
interface ReferenceCounterInterface
{
    public function acquire(bool $persistent = false): void;

    public function release(): void;
}