henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014 The WebRTC Project Authors. All rights reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Henrik Kjellander | c036276 | 2017-06-29 08:03:04 +0200 | [diff] [blame] | 11 | #ifndef WEBRTC_RTC_BASE_ASYNCINVOKER_INL_H_ |
| 12 | #define WEBRTC_RTC_BASE_ASYNCINVOKER_INL_H_ |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 13 | |
Henrik Kjellander | 0072511 | 2017-06-30 15:14:45 +0200 | [diff] [blame^] | 14 | #include "webrtc/base/atomicops.h" |
| 15 | #include "webrtc/base/bind.h" |
| 16 | #include "webrtc/base/criticalsection.h" |
| 17 | #include "webrtc/base/messagehandler.h" |
| 18 | #include "webrtc/base/sigslot.h" |
| 19 | #include "webrtc/base/thread.h" |
| 20 | #include "webrtc/base/thread_annotations.h" |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 21 | |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 22 | namespace rtc { |
| 23 | |
| 24 | class AsyncInvoker; |
| 25 | |
| 26 | // Helper class for AsyncInvoker. Runs a task and triggers a callback |
| 27 | // on the calling thread if necessary. |
| 28 | class AsyncClosure { |
| 29 | public: |
| 30 | explicit AsyncClosure(AsyncInvoker* invoker) : invoker_(invoker) {} |
| 31 | virtual ~AsyncClosure(); |
| 32 | // Runs the asynchronous task, and triggers a callback to the calling |
| 33 | // thread if needed. Should be called from the target thread. |
| 34 | virtual void Execute() = 0; |
| 35 | |
| 36 | protected: |
| 37 | AsyncInvoker* invoker_; |
| 38 | }; |
| 39 | |
| 40 | // Simple closure that doesn't trigger a callback for the calling thread. |
| 41 | template <class FunctorT> |
| 42 | class FireAndForgetAsyncClosure : public AsyncClosure { |
| 43 | public: |
| 44 | explicit FireAndForgetAsyncClosure(AsyncInvoker* invoker, |
| 45 | const FunctorT& functor) |
| 46 | : AsyncClosure(invoker), functor_(functor) {} |
| 47 | virtual void Execute() { |
| 48 | functor_(); |
| 49 | } |
| 50 | private: |
| 51 | FunctorT functor_; |
| 52 | }; |
| 53 | |
| 54 | } // namespace rtc |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 55 | |
Henrik Kjellander | c036276 | 2017-06-29 08:03:04 +0200 | [diff] [blame] | 56 | #endif // WEBRTC_RTC_BASE_ASYNCINVOKER_INL_H_ |