Valentin Shergin 93dd790cad Fabric: Simplified relationship between RawEvent and EventEmitter
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
2018-09-13 23:02:37 -07:00

36 lines
651 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.
*/
#pragma once
#include <memory>
#include <folly/dynamic.h>
#include <fabric/events/primitives.h>
namespace facebook {
namespace react {
/*
* Represents ready-to-dispatch event object.
*/
class RawEvent {
public:
RawEvent(
std::string type,
folly::dynamic payload,
WeakEventTarget eventTarget
);
const std::string type;
const folly::dynamic payload;
const WeakEventTarget eventTarget;
};
} // namespace react
} // namespace facebook