blob: aced4bbebdb805656b6f3b208786691c8e7168bd [file] [log] [blame]
// 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();
fml::RefPtr<fml::TaskRunner> GetTaskRunner() const;
void Join();
private:
std::unique_ptr<std::thread> thread_;
fml::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_