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"
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
24 class CryptoTask
: public Runnable
{
29 CryptoTask() : Runnable("CryptoTask"), mRv(NS_ERROR_NOT_INITIALIZED
) {}
31 virtual ~CryptoTask() = default;
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;
40 * Called on the main thread with the result from CalculateResult().
42 virtual void CallCallback(nsresult rv
) = 0;
45 NS_IMETHOD
Run() final
;
50 } // namespace mozilla
52 #endif // mozilla__CryptoTask_h