PHP WebShell

Текущая директория: /usr/lib/node_modules/bitgo/node_modules/react-native/ReactCommon/react/performance/timeline

Просмотр файла: PerformanceEntryCircularBuffer.h

/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

#pragma once

#include "CircularBuffer.h"
#include "PerformanceEntryBuffer.h"

namespace facebook::react {

class PerformanceEntryCircularBuffer : public PerformanceEntryBuffer {
 public:
  explicit PerformanceEntryCircularBuffer(size_t size) : buffer_(size) {}
  ~PerformanceEntryCircularBuffer() override = default;

  void add(const PerformanceEntry& entry) override;

  void getEntries(std::vector<PerformanceEntry>& target) const override;
  void getEntries(
      std::vector<PerformanceEntry>& target,
      const std::string& name) const override;

  void clear() override;
  void clear(const std::string& name) override;

 private:
  CircularBuffer<PerformanceEntry> buffer_;
};

} // namespace facebook::react

Выполнить команду


Для локальной разработки. Не используйте в интернете!