mirror of
https://github.com/status-im/react-native.git
synced 2025-01-29 02:35:41 +00:00
93dd790cad
Summary: Instead of relying on explicit `RawEventDispatchable` function, we simply check the existence of the `weak_ptr` to `EventTarget`. This is efficient and sufficient because only an EventEmitter retains an associated EventTarget. Reviewed By: mdvacca Differential Revision: D9764858 fbshipit-source-id: 4ac25d925f189d0f8b9002e52388fd51629934a8
24 lines
495 B
C++
24 lines
495 B
C++
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "RawEvent.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
RawEvent::RawEvent(
|
|
std::string type,
|
|
folly::dynamic payload,
|
|
WeakEventTarget eventTarget
|
|
):
|
|
type(std::move(type)),
|
|
payload(std::move(payload)),
|
|
eventTarget(std::move(eventTarget)) {}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|