Files
react-native/React/Fabric/Utils/PlatformRunLoopObserver.h
T
Valentin Shergin f05fff6a68 Fabric: Using PlatformRunLoopObserver instead of MainRunLoopEventBeat and RuntimeEventBeat on iOS (gated)
Summary:
This diff implements iOS-specific `PlatformRunLoopObserver` (and `MainRunLoopObserver`) that then being glued together with `SynchronousEventBeat` replaces `MainRunLoopEventBeat`, and then same thing glued with `AsynchronousEventBeat` replaces `RuntimeEventBeat`.

So, instead of two platform-specific classes we had on iOS (for that needs), now we have only one (that can be reused for a more broad variety of applications).

Changelog: [Internal] Fabric-specific internal change.

Reviewed By: sammy-SC

Differential Revision: D21341998

fbshipit-source-id: fafde4e678770f7fcf9c1ff87acc02812a37e708
2020-05-11 09:01:33 -07:00

55 lines
1.3 KiB
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 <CoreFoundation/CFRunLoop.h>
#include <CoreFoundation/CoreFoundation.h>
#include <react/utils/RunLoopObserver.h>
namespace facebook {
namespace react {
/*
* Concrete iOS-specific implementation of `RunLoopObserver` using
* `CFRunLoopObserver` under the hood.
*/
class PlatformRunLoopObserver : public RunLoopObserver {
public:
PlatformRunLoopObserver(
RunLoopObserver::Activity activities,
RunLoopObserver::WeakOwner const &owner,
CFRunLoopRef runLoop);
~PlatformRunLoopObserver();
virtual bool isOnRunLoopThread() const noexcept override;
private:
void startObserving() const noexcept override;
void stopObserving() const noexcept override;
CFRunLoopRef runLoop_;
CFRunLoopObserverRef mainRunLoopObserver_;
};
/*
* Convenience specialization of `PlatformRunLoopObserver` observing the main
* run loop.
*/
class MainRunLoopObserver final : public PlatformRunLoopObserver {
public:
MainRunLoopObserver(
RunLoopObserver::Activity activities,
RunLoopObserver::WeakOwner const &owner)
: PlatformRunLoopObserver(activities, owner, CFRunLoopGetMain()) {}
};
} // namespace react
} // namespace facebook