Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

InMemoryExporter.php

Same filename in this branch
  1. 11.1.x vendor/open-telemetry/sdk/Metrics/MetricExporter/InMemoryExporter.php
  2. 11.1.x vendor/open-telemetry/sdk/Trace/SpanExporter/InMemoryExporter.php

Namespace

OpenTelemetry\SDK\Logs\Exporter

File

vendor/open-telemetry/sdk/Logs/Exporter/InMemoryExporter.php

View source
<?php

declare (strict_types=1);
namespace OpenTelemetry\SDK\Logs\Exporter;

use ArrayObject;
use OpenTelemetry\SDK\Common\Future\CancellationInterface;
use OpenTelemetry\SDK\Common\Future\CompletedFuture;
use OpenTelemetry\SDK\Common\Future\FutureInterface;
use OpenTelemetry\SDK\Logs\LogRecordExporterInterface;
class InMemoryExporter implements LogRecordExporterInterface {
    public function __construct(ArrayObject $storage = new ArrayObject()) {
    }
    
    /**
     * @inheritDoc
     */
    public function export(iterable $batch, ?CancellationInterface $cancellation = null) : FutureInterface {
        foreach ($batch as $record) {
            $this->storage
                ->append($record);
        }
        return new CompletedFuture(true);
    }
    public function forceFlush(?CancellationInterface $cancellation = null) : bool {
        return true;
    }
    public function shutdown(?CancellationInterface $cancellation = null) : bool {
        return true;
    }
    public function getStorage() : ArrayObject {
        return $this->storage;
    }

}

Classes

Title Deprecated Summary
InMemoryExporter
RSS feed
Powered by Drupal