tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

QueueObject.h (845B)


      1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* vim:set ts=2 sw=2 sts=2 et cindent: */
      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
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 #ifndef MOZILLA_QUEUE_OBJECT_H
      8 #define MOZILLA_QUEUE_OBJECT_H
      9 
     10 #include "mozilla/RefPtr.h"
     11 #include "nsIRunnable.h"
     12 #include "nsThreadUtils.h"
     13 
     14 namespace mozilla {
     15 
     16 class AbstractThread;
     17 
     18 class QueueObject {
     19 public:
     20  explicit QueueObject(RefPtr<AbstractThread> aThread);
     21  ~QueueObject();
     22  void Dispatch(nsIRunnable* aRunnable);
     23  void Dispatch(already_AddRefed<nsIRunnable> aRunnable);
     24  bool OnThread();
     25  AbstractThread* Thread();
     26 
     27 private:
     28  RefPtr<AbstractThread> mThread;
     29 };
     30 }  // namespace mozilla
     31 
     32 #endif