mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
40 lines
812 B
C++
40 lines
812 B
C++
// Copyright 2017 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef FLUTTER_FML_THREAD_H_
|
|
#define FLUTTER_FML_THREAD_H_
|
|
|
|
#include <atomic>
|
|
#include <memory>
|
|
#include <thread>
|
|
|
|
#include "flutter/fml/macros.h"
|
|
#include "flutter/fml/task_runner.h"
|
|
|
|
namespace fml {
|
|
|
|
class Thread {
|
|
public:
|
|
explicit Thread(const std::string& name = "");
|
|
|
|
~Thread();
|
|
|
|
fxl::RefPtr<fml::TaskRunner> GetTaskRunner() const;
|
|
|
|
void Join();
|
|
|
|
private:
|
|
std::unique_ptr<std::thread> thread_;
|
|
fxl::RefPtr<fml::TaskRunner> task_runner_;
|
|
std::atomic_bool joined_;
|
|
|
|
static void SetCurrentThreadName(const std::string& name);
|
|
|
|
FML_DISALLOW_COPY_AND_ASSIGN(Thread);
|
|
};
|
|
|
|
} // namespace fml
|
|
|
|
#endif // FLUTTER_FML_THREAD_H_
|