2013-06-21 07:14:42 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef MOZILLA_ASYNCEVENTRUNNER_H_
|
|
|
|
#define MOZILLA_ASYNCEVENTRUNNER_H_
|
|
|
|
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
template <typename T>
|
2016-04-26 03:23:21 +03:00
|
|
|
class AsyncEventRunner : public Runnable
|
2013-06-21 07:14:42 +04:00
|
|
|
{
|
|
|
|
public:
|
2013-09-27 09:22:37 +04:00
|
|
|
AsyncEventRunner(T* aTarget, const char* aName)
|
2017-06-12 22:34:10 +03:00
|
|
|
: Runnable("AsyncEventRunner")
|
|
|
|
, mTarget(aTarget)
|
2013-06-21 07:14:42 +04:00
|
|
|
, mName(aName)
|
|
|
|
{}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD Run() override
|
2013-06-21 07:14:42 +04:00
|
|
|
{
|
|
|
|
mTarget->DispatchSimpleEvent(mName);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<T> mTarget;
|
2013-06-21 07:14:42 +04:00
|
|
|
const char* mName;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
2015-07-13 18:25:42 +03:00
|
|
|
|
2013-06-21 07:14:42 +04:00
|
|
|
#endif /* MOZILLA_ASYNCEVENTRUNNER_H_ */
|