Bug 1935611 - Fix libyuv/libpng link failed for loongarch64. r=glandium,tnikkel,ng
[gecko.git] / security / manager / ssl / CryptoTask.h
blob2cbd082d7a684e6b1b9f65b25d1b3856f48a526f
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla__CryptoTask_h
8 #define mozilla__CryptoTask_h
10 #include "mozilla/Attributes.h"
11 #include "nsThreadUtils.h"
13 namespace mozilla {
15 /**
16 * Frequently we need to run a task on a background thread without blocking
17 * the main thread, and then call a callback on the main thread with the
18 * result. This class provides the framework for that. Subclasses must:
20 * (1) Override CalculateResult for the off-the-main-thread computation.
21 * (2) Override CallCallback() for the on-the-main-thread call of the
22 * callback.
24 class CryptoTask : public Runnable {
25 public:
26 nsresult Dispatch();
28 protected:
29 CryptoTask() : Runnable("CryptoTask"), mRv(NS_ERROR_NOT_INITIALIZED) {}
31 virtual ~CryptoTask() = default;
33 /**
34 * Called on a background thread (never the main thread). Its result will be
35 * passed to CallCallback on the main thread.
37 virtual nsresult CalculateResult() = 0;
39 /**
40 * Called on the main thread with the result from CalculateResult().
42 virtual void CallCallback(nsresult rv) = 0;
44 private:
45 NS_IMETHOD Run() final;
47 nsresult mRv;
50 } // namespace mozilla
52 #endif // mozilla__CryptoTask_h