folly copyright 2015 -> copyright 2016
[folly.git] / folly / futures / ThreadedExecutor.h
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #pragma once
18
19 #include <list>
20 #include <mutex>
21 #include <thread>
22 #include <folly/Executor.h>
23
24 namespace folly { namespace futures {
25
26 /**
27  *  Runs functions each in its own thread.
28  *
29  *  Kind of simple. Suitable for a few types of strange cases.
30  */
31 class ThreadedExecutor : public Executor {
32 public:
33   ~ThreadedExecutor();
34   void add(Func f) override;
35 private:
36   std::mutex mutex_;
37   std::list<std::thread> threads_;
38   bool destructing_ = false;
39 };
40
41 }}