mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
4802cffa14
Summary: This diff removes the FabricBinder interface as it is not required anymore Reviewed By: sahrens Differential Revision: D13707495 fbshipit-source-id: ba470e7b0884d75491b1b162cd6bce09c193d863
26 lines
852 B
Java
26 lines
852 B
Java
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
|
|
* directory of this source tree.
|
|
*/
|
|
package com.facebook.react.fabric;
|
|
|
|
import com.facebook.react.bridge.JavaScriptContextHolder;
|
|
import com.facebook.react.bridge.queue.MessageQueueThread;
|
|
import com.facebook.react.fabric.jsi.ComponentFactoryDelegate;
|
|
import com.facebook.react.fabric.jsi.EventBeatManager;
|
|
|
|
public interface FabricBinding {
|
|
|
|
// TODO: T31905686 change types of UIManager and EventBeatManager when moving to OSS
|
|
void register(
|
|
JavaScriptContextHolder jsContext,
|
|
FabricUIManager fabricUIManager,
|
|
EventBeatManager eventBeatManager,
|
|
MessageQueueThread jsMessageQueueThread,
|
|
ComponentFactoryDelegate componentFactoryDelegate);
|
|
|
|
void unregister();
|
|
}
|