Migrate CallInvokerHolder to kotlin (#38504)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/38504

In this diff I'm migrating CallInvokerHolder to kotlin

changelog: [internal] internal

Reviewed By: christophpurrer

Differential Revision: D47382873

fbshipit-source-id: 7641c0685e3716f9d3b2db6c5ba837b4a47e7d08
This commit is contained in:
David Vacca
2023-07-28 06:08:53 -07:00
committed by Facebook GitHub Bot
parent b1385ef663
commit 710f2e3bdb
@@ -5,14 +5,13 @@
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.react.turbomodule.core.interfaces;
package com.facebook.react.turbomodule.core.interfaces
/**
* JS CallInvoker is created by CatalystInstance.cpp, but used by TurboModuleManager.cpp. Both C++
* classes are instantiated at different times/places. Therefore, to pass the JS CallInvoker
* instance from CatalystInstance to TurboModuleManager, we make it take a trip through Java.
*
* <p>This interface represents the opaque Java object that contains a pointer to and instance of
* This interface represents the opaque Java object that contains a pointer to and instance of
* CallInvoker.
*/
public interface CallInvokerHolder {}
interface CallInvokerHolder