15 lines
224 B
PHP
15 lines
224 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OpenTelemetry\SDK\Metrics;
|
|
|
|
interface MetricReaderInterface
|
|
{
|
|
public function collect(): bool;
|
|
|
|
public function shutdown(): bool;
|
|
|
|
public function forceFlush(): bool;
|
|
}
|