blob: 59135033f7c28961dac0def82c56be1661356a3c [file] [log] [blame]
// Copyright (C) 2015 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#include "android/base/threads/Thread.h"
#include "android/base/threads/Types.h"
#include "android/base/TypeTraits.h"
// FunctorThread class is an implementation of base Thread interface that
// allows one to run a function object in separate thread. It's mostly a
// convenience class so one doesn't need to create a separate class if the only
// needed thing is to run a specific existing function in a thread.
namespace android {
namespace base {
class FunctorThread : public android::base::Thread {
public:
using Functor = android::base::ThreadFunctor;
explicit FunctorThread(const Functor& func,
ThreadFlags flags = ThreadFlags::MaskSignals);
// A constructor from a void function in case when result isn't important.
template <class Func,
class = enable_if<is_callable_as<Func, void()>>>
explicit FunctorThread(const Func& func,
ThreadFlags flags = ThreadFlags::MaskSignals)
: Thread(flags), mThreadFunc([func]() {
func();
return intptr_t();
}) {}
private:
virtual intptr_t main() override;
private:
Functor mThreadFunc;
ThreadFlags mFlags;
};
} // namespace base
} // namespace android